1
2
3
4
5
6
7
8
9
10
11
12
|
<? require_once($LIBPATH . "libutil.php"); assert_rights("D"); require_once ($LIBPATH . "form.php"); $albumsAddFrm = array("Adaugare album nou", "mod_:albums", "act_albumsaddFrm", "TBL_ALBUMS", 650, 'stBoxThin', 'stSortableHeader', 'center', 25, "", array( new Field("Nume:", "TEXT", "NameRO", 'stFormCellText', 'stCtrlText', 30), new Field("Imagine:", "UPLOAD", "Image1", 'stFormCellText', 'stCtrlText', 30), //new Field("CV:", "UPLOAD", "cv1", 'stFormCellText', 'stCtrlText', 30), new Field("Continut:", "SPAW", "Content", 'stFormCellText', 'stCtrlText', 30, array(array("ContentRO", "ContentRO", ""))), new Field("Ordinea:", "TEXT", "OrderID", 'stFormCellText', 'stCtrlText', 30))); ?>
|