1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php require_once($LIBPATH . "libutil.php"); assert_rights("B"); require_once ($LIBPATH . "tableContent.php"); $table_pages_feeder = array("PAGES_FEEDER", "DbFeeder", array("TBL_PAGES", null, null, null, "AND", false, false)); $table_pages = array(array("ID", "Title RO"), array("ID", "NameRO"), array(30, 300), "sortable", // table class "stSortableHeader", // title class "stNRow", // normal first row "stFRow", // normal next row "stTableRowOver", // row over class "mod.php?mod=pages&action=act_delete", // deletion link "index.php?cnt_=pages/pageDetails", // details link "ID",// pass to detail "index.php?cnt_=pages/pageAdd", "", array(1)); // add link ?>
|