Lines Matching refs:form
96 $form = '<form action="' . wl($ID) . '" action="post">';
97 $form .= '<input type="hidden" name="do" value="admin" />';
98 $form .= '<input type="hidden" name="page" value="recommend" />';
99 $form .= '<input type="hidden" name="sectok" value="' . getSecurityToken() . '" />';
100 $form .= '<table class="inline">';
103 $form .= '<tr>';
104 $form .= '<th>' . $this->getLang('assign_pattern') . '</th>';
105 $form .= '<th>' . $this->getLang('assign_user') . '</th>';
106 $form .= '<th>' . $this->getLang('assign_subject') . '</th>';
107 $form .= '<th>' . $this->getLang('assign_message') . '</th>';
108 $form .= '<th></th>';
109 $form .= '</tr>';
133 $form .= '<tr>';
134 $form .= '<td>' . hsc($pattern) . '</td>';
135 $form .= '<td>' . hsc($user) . '</td>';
136 $form .= '<td>' . hsc($subject) . '</td>';
137 $form .= '<td>' . nl2br($message) . '</td>';
138 …$form .= '<td><a class="deletePattern" href="' . $link . '">' . $this->getLang('assign_del') . '</…
139 $form .= '</tr>';
144 $form .= '<tr>';
145 $form .= '<td><input type="text" name="assignment[pattern]" /></td>';
146 $form .= '<td><input type="text" name="assignment[user]" /></td>';
147 $form .= '<td><input type="text" name="assignment[subject]" /></td>';
148 $form .= '<td><textarea cols="30" rows="4" name="assignment[message]"></textarea></td>';
149 …$form .= '<td><button type="submit" name="action" value="add">' . $this->getLang('assign_add') . '…
150 $form .= '</tr>';
152 $form .= '</table>';
153 $form .= '</form>';
155 return $form;