1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php require_once($LIBPATH . "libutil.php"); assert_rights("E"); require_once ($LIBPATH . "tableContent.php"); $table_gallerydir_feeder = array("GALLERYDIR_FEEDER", "DbFeeder", array("TBL_GALLERYDIR", null, null, null, "AND", false, false));
$table_gallerydir = array(array("ID", "Nume"), array("ID","NameRO"), array(30, 200), "sortable", // table class "stSortableHeader", // title class "stNRow", // normal first row "stFRow", // normal next row "stTableRowOver", // row over class "mod.php?mod=gallerydir&action=act_delete", // deletion link "index.php?cnt_=gallerydir/gallerydirDetails", // details link "ID",// pass to detail "index.php?cnt_=gallerydir/gallerydirAdd", "", array(1)); // add link
?>
|