1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<? require_once($LIBPATH . "libutil.php"); assert_rights("C"); require_once ($LIBPATH . "form.php"); $articleDetailsFrm_feeder = array("ARTICLEDETAILS_FEEDER", "DbFeeder", array("TBL_ARTICLES", null, array("ID"), array("GET/ID"), "AND", true, true)); $articleDetailsFrm = array("Editare articol", "mod_:articles", "act_articleDetailsFrm", "TBL_ARTICLES", 650, 'stBoxThin', 'stSortableHeader', 'center', 25, "", array( new Field("Titlu:", "TEXT", "NameRO", 'stFormCellText', 'stCtrlText', 30), new Field("Imagine:", "UPLOAD", "ImgID", '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("hdImage", "HIDDEN", "hdImage", 'stFormCellText', 'stCtrlText', 30, array("articleDetailsFrm_feeder/ImgID")), new Field("Ordinea:", "TEXT", "OrderID", 'stFormCellText', 'stCtrlText', 30))); //new Field("Page Content:", "SPAW", "ContentRO_", 'stFormCellText', 'stCtrlText', 30, array(array("ContentRO", "ContentRO", ""), array("ContentHU", "ContentHU", ""))))); $content = form("articleDetailsFrm"); ?>
|