Lines Matching full:contact
3 * Embed a contact form onto any page
23 'name' => 'Contact Form Plugin',
24 'desc' => 'Creates a contact form to email the webmaster',
25 'url' => 'http://bobbaddeley.com/doku.php/projects/programming/wiki/contact',
55 $this->Lexer->addSpecialPattern('\{\{contact>[^}]*\}\}',$mode,'plugin_contact');
102 $to = $conf['plugin']['contact'][$_REQUEST['to']];
105 $to = $conf['plugin']['contact']['default'];
137 $this->_show_message ("Mail not sent. Please contact the administrator");
152 * Does the contact form xhtml creation. Adds some javascript to validate the form
159 //there is a hidden field on the contact submission field
160 //that essentially says 'contact' = true. When the page is loaded,
164 if ($_POST['contact'] == 'true') {$ret .= $this->_send_contact();}
187 $ret .= "<input type=\"hidden\" name=\"contact\" value=\"true\" />";
188 $ret .= "<input type=\"submit\" name=\"submit\" value=\"".$this->getLang("contact")."\" />";