header('Users'); $t->paragraph($t->link($t->url('users.csv'), "Download this as a spreadsheet.")); $t->openTag('form', array('action'=>$t->url('users/index'), 'method'=>'post')); $t->tag('input', array('type'=>'submit', 'value'=>'Save/Update')); $t->openTag('table'); $t->openTag('tr'); foreach ($attribs as $attrib) { $t->tag('th', array(), $attrib['name']); } $t->tag('th'); $t->closeTag('tr'); foreach ($users as $user) { $t->openTag('tr'); foreach ($attribs as $attrib) { $t->openTag('td'); $props = $user[$attrib['key']]; $value = $props['value']; $editable = $props['editable']; $post_key = $props['post_key']; $bool = is_bool($value); $arr = array('name'=>$post_key); if (!$editable) { $arr['readonly'] = 'readonly'; if ($bool) $arr['disabled'] = $disabled; } if ($bool) { $t->tag('input', array('type'=>'hidden', 'name'=>$post_key, 'value'=>'false')); if ($value==true) { $arr['checked'] = 'checked'; } $arr['value'] = 'true'; $arr['type'] = 'checkbox'; } else { $arr['value'] = $value; $arr['type'] = 'text'; } $t->tag('input', $arr); $t->closeTag('td'); } $t->openTag('td'); $t->link($t->url('users/'.$user['auth_name']['value']), 'More'); $t->closeTag('td'); $t->closeTag('tr'); } $t->openTag('tr'); foreach ($attribs as $attrib) { $t->tag('th', array(), $attrib['name']); } $t->tag('th'); $t->closeTag('tr'); $t->closeTag('table'); $t->tag('input', array('type'=>'submit', 'value'=>'Save/Update')); $t->closeTag('form'); $t->footer();