1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php require_once($LIBPATH . "libutil.php"); assert_rights("C"); require_once ($LIBPATH . "form.php");
$itemsDetailsFrm_feeder = array("ITEMS3DETAILS_FEEDER", "DbFeeder", array("TBL_ITEMS", null, array("ID"), array("GET/ID"), "AND", true, true)); $itemsDetailsFrm = array("Editare items", "mod_:items3", "act_items3DetailsFrm", "TBL_ITEMS", 650, 'stBoxThin', 'stSortableHeader', 'center', 25, "", array( new Field("ID", "HIDDEN", "ID", 'stFormCellText', 'stCtrlText', 30, array($_GET['ID'])), new Field("Titlu:", "TEXT", "Titlu", 'stFormCellText', 'stCtrlText', 30), new Field("Page Content:", "SPAW", "Continut_", 'stFormCellText', 'stCtrlText', 30, array(array("Continut"), array("Continut"))), new Field("Data:", "DATE", "Datas", 'stFormCellText', 'stCtrlText', 30, array(1, "checked")), new Field("Activ:", "CHECKBOX", "Activs", 'stFormCellText', 'stCtrlText', 30, array(1, "checked")), new Field("Order ID:", "TEXT", "OrderID", 'stFormCellText', 'stCtrlText', 30), //new Field("Galeria", "COMBO", "MID", 'stFormCellText', 'stCtrlText', 30, array("ID", "Titlu", "itemsDetailsFrm_feeder/MID"), $itemsdir_table_feeder), //new Field("Grupa:", "TEXT", "MID", 'stFormCellText', 'stCtrlText', 30), )); $content = form("itemsDetailsFrm"); ?>
|