Subversion Repositories general

Compare Revisions

No changes between revisions

Ignore whitespace Rev 1384 → Rev 1385

/asterisk-stats/trunk/telbook_categories_list.php
0,0 → 1,25
<?php
 
include_once('includes/common.php');
Prolog();
 
$db->query("select category_id, category_name, category_comment, category_export_key"
. " from telbook_categories order by category_name");
 
$table = new Table(array('Name', 'Comment', 'Export Key', ''));
$table->set_table_class('telbook list category_list');
 
while($line = $db->fetch_row()) {
$table->newrow();
$table->addcell($line['category_name']);
$table->addcell($line['category_comment']);
$table->addcell($line['category_export_key']);
$table->addcell(array('class' => 'link', 'html' =>
display_link('telbook_categories_details.php?id=' . $line['category_id'], 'Edit')));
}
$g_display->add_html_text($table->build());
$g_display->add_template('telbook_category_list_end');
 
Epilog();
 
?>
Property changes:
Added: svn:mergeinfo