Lines Matching refs:form
90 $form = '<form action="' . wl($ID) . '" action="post">';
91 $form .= '<input type="hidden" name="do" value="admin" />';
92 $form .= '<input type="hidden" name="page" value="recommend" />';
93 $form .= '<input type="hidden" name="sectok" value="' . getSecurityToken() . '" />';
94 $form .= '<table class="inline">';
97 $form .= '<tr>';
98 $form .= '<th>' . $this->getLang('assign_pattern') . '</th>';
99 $form .= '<th>' . $this->getLang('assign_user') . '</th>';
100 $form .= '<th>' . $this->getLang('assign_subject') . '</th>';
101 $form .= '<th>' . $this->getLang('assign_message') . '</th>';
102 $form .= '<th></th>';
103 $form .= '</tr>';
126 $form .= '<tr>';
127 $form .= '<td>' . hsc($pattern) . '</td>';
128 $form .= '<td>' . hsc($user) . '</td>';
129 $form .= '<td>' . hsc($subject) . '</td>';
130 $form .= '<td>' . nl2br($message) . '</td>';
131 …$form .= '<td><a class="deletePattern" href="' . $link . '">' . $this->getLang('assign_del') . '</…
132 $form .= '</tr>';
136 $form .= '<tr>';
137 $form .= '<td><input type="text" name="assignment[pattern]" /></td>';
138 $form .= '<td><input type="text" name="assignment[user]" /></td>';
139 $form .= '<td><input type="text" name="assignment[subject]" /></td>';
140 $form .= '<td><textarea cols="30" rows="4" name="assignment[message]"></textarea></td>';
141 …$form .= '<td><button type="submit" name="action" value="add">' . $this->getLang('assign_add') . '…
142 $form .= '</tr>';
144 $form .= '</table>';
145 $form .= '</form>';
147 return $form;