Lines Matching refs:form
102 $form = '<form action="' . wl($ID) . '" action="post">';
103 $form .= '<input type="hidden" name="do" value="admin" />';
104 $form .= '<input type="hidden" name="page" value="recommend" />';
105 $form .= '<input type="hidden" name="sectok" value="' . getSecurityToken() . '" />';
106 $form .= '<table class="inline">';
109 $form .= '<tr>';
110 $form .= '<th>' . $this->getLang('assign_pattern') . '</th>';
111 $form .= '<th>' . $this->getLang('assign_user') . '</th>';
112 $form .= '<th>' . $this->getLang('assign_subject') . '</th>';
113 $form .= '<th>' . $this->getLang('assign_message') . '</th>';
114 $form .= '<th></th>';
115 $form .= '</tr>';
139 $form .= '<tr>';
140 $form .= '<td>' . hsc($pattern) . '</td>';
141 $form .= '<td>' . hsc($user) . '</td>';
142 $form .= '<td>' . hsc($subject) . '</td>';
143 $form .= '<td>' . nl2br($message) . '</td>';
144 $form .= '<td><a class="deletePattern" href="' .
146 $form .= '</tr>';
151 $form .= '<tr>';
152 $form .= '<td><input type="text" name="assignment[pattern]" /></td>';
153 $form .= '<td><input type="text" name="assignment[user]" /></td>';
154 $form .= '<td><input type="text" name="assignment[subject]" /></td>';
155 $form .= '<td><textarea cols="30" rows="4" name="assignment[message]"></textarea></td>';
156 $form .= '<td><button type="submit" name="action" value="add">' .
158 $form .= '</tr>';
160 $form .= '</table>';
161 $form .= '</form>';
163 return $form;