show_tabbed_nav($links, $captions, 2);
?>
Media
load('libraries', 'table');
$tmpl = array (
'table_open' => '',
'heading_row_start' => '',
'heading_cell_start' => '',
'heading_cell_end' => ' | ',
'row_start' => '',
'row_end' => '
',
'cell_start' => '',
'cell_end' => ' | ',
'row_alt_start' => '',
'row_alt_end' => '
',
'cell_alt_start' => '',
'cell_alt_end' => ' | ',
'table_close' => '
'
);
$cms->table->set_template($tmpl);
$cms->table->set_heading('Date added', 'Filename', 'Type', 'Used?');
$cms->table->add_row('12-12-07', 'The filename', 'Video/YouTube', 'Yes');
$cms->table->add_row('12-12-07', 'The Image filename', 'Image/PNG', 'Yes');
$cms->table->add_row('12-12-07', 'The filename', 'Video/Vimeo', 'Yes');
$cms->table->add_row('12-12-07', 'The filename', 'Video/Whatevr', 'Yes');
$cms->table->add_row('12-12-07', 'The JPG filename', 'Image/JPG', 'Yes');
echo $cms->table->generate();
?>