Hi,<br>I&#39;m doing some privatemsg module hacking and my client want&#39;s to break the &quot;bunch of buttons&quot; paradigm and to have a nicely styled message center.<br>I need to wrap some of the buttons with classy divs but that&#39;s not the problem here..
<br><br>I need to find a way to substitute a forms submit button with a link.<br>This is what I have so far...<br><br>&nbsp;$form[&#39;new_folder&#39;] = array(<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#39;#value&#39; =&gt; &#39;&lt;a href=&quot;javascript:
forms.privatemsg_list_form.submit()&quot;&gt;New folder&lt;/a&gt;&#39;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#39;#name&#39; =&gt; &#39;op&#39;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; );<br><br>instead of something like this ..<br><br>&nbsp; $form[&#39;new_message&#39;] = array(<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#39;#type&#39; =&gt; &#39;submit&#39;,
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#39;#value&#39; =&gt; t(&#39;Write a new message&#39;),<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#39;#name&#39; =&gt; &#39;op&#39;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; );<br><br>Now the form that receives this uses the value submitted to enter a case clause so I need to pass the text as the submitted value...
<br><br>switch ($op) {<br>&nbsp;&nbsp;&nbsp; case &#39;list&#39;:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $output = _privatemsg_list($arg);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $title = t(&#39;Private messages&#39;);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; break;<br>&nbsp;&nbsp;&nbsp; case &#39;view&#39;:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $output = _privatemsg_view($arg);
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $title = t(&quot;Read message&quot;);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $breadcrumb = array(l(t(&#39;Home&#39;), &#39;&#39;), l(t(&#39;private messages&#39;), &#39;privatemsg&#39;));<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; break;<br>&nbsp;&nbsp;&nbsp; case t(&#39;Write a new message&#39;):
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $arg = &quot;&quot;;<br>&nbsp;&nbsp;&nbsp; case &#39;form&#39;:<br><br>etc...<br><br>Any ideas or reference implementations?<br>Lior<br>&nbsp;<br>---<br>ליאור קסוס , לינוויט<br><a href="http://www.linnovate.net">http://www.linnovate.net
</a>