1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php require_once($LIBPATH . "libutil.php"); assert_rights("C"); require_once ($LIBPATH . "form.php");
$toplistcategories_table_feeder = array("TOPLISTCATEGORIES_FEEDER:noFilter", "DbFeeder", array("TBL_TOPLISTCATEGORIES", array("ID", "title"), null, null, "AND", false, false,""));
$top20AddFrm = array("Adauga Songs", "mod_:top20", "act_top20addFrm", "TBL_TOP20", 650, 'stBoxThin', 'stSortableHeader', 'center', 25, "", array( new Field("Artist:", "TEXT", "artist", 'stFormCellText', 'stCtrlText', 30), new Field("Song:", "TEXT", "song", 'stFormCellText', 'stCtrlText', 30), new Field("Position:", "TEXT", "up", 'stFormCellText', 'stCtrlText', 30), new Field("Activ:", "CHECKBOX", "active", 'stFormCellText', 'stCtrlText', 30, array(1, "checked")), new Field("Previouse month:", "TEXT", "prev_month", 'stFormCellText', 'stCtrlText', 30), new Field("Months in top:", "TEXT", "months_in_top", 'stFormCellText', 'stCtrlText', 30), new Field("Data:", "DATE", "added_date", 'stFormCellText', 'stCtrlText', 30, array(1, "checked")), new Field("Cover:", "UPLOAD", "coverimg", 'stFormCellText', 'stCtrlText', 30, array(30,6)), new Field("MP3:", "UPLOAD", "mp3", 'stFormCellText', 'stCtrlText', 30, array(30,6)), new Field("Category", "COMBO", "type_of_list", 'stFormCellText', 'stCtrlText', 30, array("ID", "title", "toplistcategories_table_feeder/type_of_list"), $toplistcategories_table_feeder) )); ?>
|