<div dir="ltr"><div>WIth the code, below, my action is appearing in the correct dropdown, and I can select it and assign it to the trigger. The problem is that it doesn&#39;t seem to know that there is a configuration form. Cache cleared and re-cleared.</div>
<div><br></div><div><div>function my_module_action_info() {</div><div>  $actions = array(</div><div>    &#39;my_module_action&#39; =&gt; array(</div><div>      &#39;type&#39; =&gt; &#39;node&#39;,</div><div>      &#39;label&#39; =&gt; t(&#39;Text&#39;),</div>
<div>      &#39;configurable&#39; =&gt; TRUE,</div><div>      &#39;triggers&#39; =&gt; array(&#39;node_presave&#39;),</div><div>    ),</div><div>  );<br></div><div><br></div><div>  return $actions;</div><div>}</div><div><br>
</div><div>function my_module_action($node, $context) {</div><div><br></div><div>}</div><div>function my_module_action_form($context) {</div><div><br></div><div>  $form[&#39;types&#39;] = array(<br></div><div>    &#39;#type&#39; =&gt; &#39;checkboxes&#39;,</div>
<div>    &#39;#title&#39; =&gt; t(&#39;Content types&#39;),</div><div>    &#39;#description&#39; =&gt; t(&#39;Select the content types&#39;),</div><div>    &#39;#options&#39; =&gt; node_type_get_names(),</div><div>    &#39;#default_value&#39; =&gt; variable_get(&#39;$types, &#39;&#39;),</div>
<div>  );</div><div>  return $form;</div><div>}</div><div>function my_module_validate($form, $form_state) {</div><div><br></div><div>}</div><div>function my_module_submit($form, $form_state) {</div><div><br></div><div>}</div>
</div><div><br clear="all"><div><br></div>-- <br>---<div><a href="http://drupal.org/user/367108" target="_blank">drupal.org/user/367108</a></div><div><a href="http://linkedin.com/in/jeffrgreenberg" target="_blank">linkedin.com/in/jeffrgreenberg</a></div>
<div><a href="http://accidentalcoder.com" target="_blank">accidentalcoder.com</a> / <a href="http://ayendesigns.com" target="_blank">ayendesigns.com</a></div><div>@accidentalcoder</div>
</div></div>