1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<?php require_once($LIBPATH . "libutil.php"); assert_rights("E"); require_once("top20DetailsFrm.php"); $content = form("top20DetailsFrm");
/* 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,""));
$top20DetailsFrm_feeder = array("TOP20DETAILS_FEEDER", "DbFeeder", array("TBL_TOP20", null, array("ID"), array("GET/ID"), "AND", true, true)); $top20DetailsFrm = array("Editare top20", "mod_:top20", "act_top20DetailsFrm", "TBL_TOP20", 650, 'stBoxThin', 'stSortableHeader', 'center', 25, "", array( new Field("ID", "HIDDEN", "ID", 'stFormCellText', 'stCtrlText', 30, array($_GET['ID'])), new Field("hdmp3", "HIDDEN", "hdmp3", 'stFormCellText', 'stCtrlText', 30, array("top20DetailsFrm_feeder/mp3")), new Field("hdcoverimg", "HIDDEN", "hdcoverimg", 'stFormCellText', 'stCtrlText', 30, array("top20DetailsFrm_feeder/coverimg")), 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("Schimb fisierul Cover:", "UPLOAD", "coverimg", 'stFormCellText', 'stCtrlText', 30, array(30,6)), new Field("Schimb fisierul MP3:", "UPLOAD", "mp3", 'stFormCellText', 'stCtrlText', 30, array(30,6)), new Field("type_of_list", "HIDDEN", "artist", 'stFormCellText', 'stCtrlText', 30), new Field("Category", "COMBO", "type_of_list", 'stFormCellText', 'stCtrlText', 30, array("ID", "title", "top20DetailsFrm_feeder/type_of_list"), $toplistcategories_table_feeder) )); $content = form("top20DetailsFrm"); ?>
*/
?>
|