1
2
3
4
5
6
7
8
9
10
11
12
13
|
<? require_once($LIBPATH . "libutil.php"); assert_rights("B"); require_once ($LIBPATH . "form.php"); $pageDetailsFrm_feeder = array("PAGEDETAILS_FEEDER", "DbFeeder", array("TBL_PAGES", null, array("ID"), array("GET/ID"), "AND", true, true)); $pageDetailsFrm = array("Editare pagina", "mod_:pages", "act_pageDetailsFrm", "TBL_PAGES", 650, 'stBoxThin', 'stSortableHeader', 'center', 25, "", array( new Field("Titlu:", "TEXT", "NameRO", 'stFormCellText', 'stCtrlText', 30), new Field("ID", "HIDDEN", "ID", 'stFormCellText', 'stCtrlText', 30, array($_GET['ID'])), new Field("Page Content:", "SPAW", "ContentRO_", 'stFormCellText', 'stCtrlText', 30, array(array("ContentRO"), array("ContentRO"))))); //new Field("Page Content:", "SPAW", "ContentRO_", 'stFormCellText', 'stCtrlText', 30, array(array("ContentRO", "ContentRO", ""), array("ContentHU", "ContentHU", ""))))); $content = form("pageDetailsFrm"); ?>
|