// build the display table
$table = new flexible_table('auth_admin_table');
$table->define_columns(array('name', 'enable', 'order', 'settings'));
-$table->column_style('enable', 'text-align', 'center');
-$table->column_style('order', 'text-align', 'center');
-$table->column_style('settings', 'text-align', 'center');
$table->define_headers(array($txt->name, $txt->enable, $txt->updown, $txt->settings));
$table->define_baseurl("{$CFG->wwwroot}/{$CFG->admin}/auth.php");
$table->set_attribute('id', 'blocks');
-$table->set_attribute('class', 'generaltable generalbox');
-$table->set_attribute('style', 'margin:auto;');
-$table->set_attribute('cellpadding', '5');
+$table->set_attribute('class', 'generaltable generalbox boxaligncenter boxwidthwide');
$table->setup();
//add always enabled plugins first
print_simple_box(get_string('configauthenticationplugins', 'admin'), 'center', '700');
-print_table($table);
+$table->print_html();
////////////////////////////////////////////////////////////////////////////////
body#admin-blocks table.generaltable th,
body#admin-filters table.generaltable th,
-body#admin-modules table.generaltable th
+body#admin-modules table.generaltable th,
+body#admin-auth table.generaltable th
{
white-space: nowrap;
}
body#admin-filters table.generaltable th,
body#admin-filters table.generaltable td.cell,
body#admin-modules table.generaltable th,
-body#admin-modules table.generaltable td.cell
+body#admin-modules table.generaltable td.cell,
+body#admin-auth table.generaltable th,
+body#admin-auth table.generaltable td.cell
{
padding: 4px;
text-align: center;
body#admin-filters table.generaltable th.c0,
body#admin-filters table.generaltable td.c0,
body#admin-modules table.generaltable th.c0,
-body#admin-modules table.generaltable td.c0
+body#admin-modules table.generaltable td.c0,
+body#admin-auth table.generaltable th.c0,
+body#admin-auth table.generaltable td.c0
{
text-align: left;
}