Lines Matching defs:class

21  * need to inherit from this class
23 class admin_plugin_usermanager extends AdminPlugin
193 * @todo split into smaller functions, use Form class
216 echo '<div class="level2">';
236 echo '<div class="table">';
237 echo '<table class="inline">';
248 echo '<td class="rightalign"><input type="image" src="' .
250 $this->lang['search_prompt'] . '" alt="' . $this->lang['search'] . '" class="button" /></td>';
251 echo '<td><input type="text" name="userid" class="edit" value="' . $this->htmlFilter('user') . '" /></td>';
252 echo '<td><input type="text" name="username" class="edit" value="' . $this->htmlFilter('name') . '" /></td>';
253 echo '<td><input type="text" name="usermail" class="edit" value="' . $this->htmlFilter('mail') . '" /></td>';
254 echo '<td><input type="text" name="usergroups" class="edit" value="' . $this->htmlFilter('grps') . '" /></td>';
269 echo '<tr class="user_info">';
270 echo '<td class="centeralign"><input type="checkbox" name="delete[' . hsc($user) .
288 echo '<tr><td colspan="5" class="centeralign">';
289 echo '<span class="medialeft">';
293 echo '<span class="mediaright">';
320 $style = $this->edit_user ? ' class="edit_user"' : '';
325 echo '<div class="level2">';
336 echo '<div class="level2">';
376 * @todo use Form class
397 echo '<div class="table">';
398 echo '<table class="inline">';
494 echo '<ul class="notes">';
496 echo '<li><span class="li">' . $note . '</li>';
514 * @todo obsolete when Form class is used
518 $class = $cando ? '' : ' class="disabled"';
533 echo "<tr $class>";
540 value=\"$value\" class=\"edit\" $autocomp $req />";
544 value=\"$value\" class=\"edit disabled\" disabled=\"disabled\" />";
588 echo '<div class="level2 import_users">';
604 echo '<div class="level3 import_failures">';
606 echo '<table class="import_failures">';
609 echo '<th class="line">' . $this->lang['line'] . '</th>';
610 echo '<th class="error">' . $this->lang['error'] . '</th>';
611 echo '<th class="userid">' . $this->lang['user_id'] . '</th>';
612 echo '<th class="username">' . $this->lang['user_name'] . '</th>';
613 echo '<th class="usermail">' . $this->lang['user_mail'] . '</th>';
614 echo '<th class="usergroups">' . $this->lang['user_groups'] . '</th>';
620 echo '<td class="lineno"> ' . sprintf('%0' . $digits . 'd', $line) . ' </td>';
621 echo '<td class="error">' . $failure['error'] . ' </td>';
622 echo '<td class="field userid"> ' . hsc($failure['user'][0]) . ' </td>';
623 echo '<td class="field username"> ' . hsc($failure['user'][2]) . ' </td>';
624 echo '<td class="field usermail"> ' . hsc($failure['user'][3]) . ' </td>';
625 echo '<td class="field usergroups"> ' . hsc($failure['user'][4]) . ' </td>';