1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php require_once($LIBPATH . "libutil.php"); assert_rights("C"); require_once ($LIBPATH . "form.php"); $stiriAddFrm = array("Adauga Stire", "mod_:stiri", "act_stiriaddFrm", "TBL_STIRI", 650, 'stBoxThin', 'stSortableHeader', 'center', 25, "", array( new Field("Titlu:", "TEXT", "Titlu", 'stFormCellText', 'stCtrlText', 30), new Field("Imagine:", "UPLOAD", "Imagine", 'stFormCellText', 'stCtrlText', 30), new Field("Data:", "DATE", "Datas", 'stFormCellText', 'stCtrlText', 30, array(1, "checked")), new Field("Page Content:", "SPAW", "Continut_", 'stFormCellText', 'stCtrlText', 30, array(array("Continut"), array("Continut"))), new Field("Activ:", "CHECKBOX", "Activs", 'stFormCellText', 'stCtrlText', 30), new Field("Sticky:", "CHECKBOX", "Stickys", 'stFormCellText', 'stCtrlText', 30))); ?>
|