1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<? require_once($LIBPATH . "libutil.php"); assert_rights("D"); require_once ($LIBPATH . "form.php"); $albumsDetailsFrm_feeder = array("ALBUMSDETAILS_FEEDER", "DbFeeder", array("TBL_ALBUMS", null, array("ID"), array("GET/ID"), "AND", true, true)); $albumsDetailsFrm = array("Editare albume", "mod_:albums", "act_albumsDetailsFrm", "TBL_ALBUMS", 650, 'stBoxThin', 'stSortableHeader', 'center', 25, "", array( new Field("Nume:", "TEXT", "NameRO", 'stFormCellText', 'stCtrlText', 30), new Field("Imagine:", "UPLOAD", "ImgID", 'stFormCellText', 'stCtrlText', 30), new Field("Continut:", "SPAW", "Content", 'stFormCellText', 'stCtrlText', 30, array(array("ContentRO", "ContentRO", ""))), new Field("hdImage", "HIDDEN", "hdImage", 'stFormCellText', 'stCtrlText', 30, array("albumsDetailsFrm_feeder/ImgID")), new Field("ID", "HIDDEN", "ID", 'stFormCellText', 'stCtrlText', 30, array($_GET['ID'])), new Field("Ordinea:", "TEXT", "OrderID", 'stFormCellText', 'stCtrlText', 30))); $content = form("albumsDetailsFrm"); ?>
|