1
2
3
4
5
6
7
8
9
10
11
|
<? require_once($LIBPATH . "libutil.php"); assert_rights("C"); require_once ($LIBPATH . "form.php"); $articleAddFrm = array("Add new article", "mod_:articles", "act_articleaddFrm", "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("Page Content:", "SPAW", "ContentRO_", 'stFormCellText', 'stCtrlText', 30, array(array("ContentRO"), array("ContentRO"))), new Field("Ordinea:", "TEXT", "OrderID", 'stFormCellText', 'stCtrlText', 30))); ?>
|