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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
<?php
$landingModule = "home";
class CLink {
function CLink($name_, $imgName_, $pageType_, $pageTypeInfo_, $credentials_) {
$this->name = $name_;
$this->imgName = $imgName_;
$this->pageType = $pageType_;
$this->pageTypeInfo = $pageTypeInfo_;
$this->credentials = $credentials_;
}
var $name;
var $imgName;
var $pageType;
var $pageTypeInfo;
var $credentials;
}
$Adm_sections_enabled = "ABCDEFGHI";
$Adm_sections = array(
new CLink("Home", "home.jpg", 2, "home", 'A'),
new CLink("Pagini", "pages.jpg", 2, "pages", 'B'),
new CLink("Headlines", "pages.jpg", 2, "items", 'B'), new CLink("History", "pages.jpg", 2, "items2", 'B'), new CLink("Rock info", "pages.jpg", 2, "items3", 'B'),
new CLink("Articole", "pages.jpg", 2, "articles", 'C'),
new CLink("Albume", "accounts.jpg", 2, "albums", 'D'),
new CLink("Galerii foto", "news.jpg", 2, "gallerydir", 'E'),
new CLink("Imagini galerii foto", "accounts.jpg", 2, "gallery", 'E'), new CLink("Bannere", "news_cat.jpg", 2, "banners", 'F'), new CLink("Stiri", "pages.jpg", 2, "stiri", 'B'), new CLink("Top20", "pages.jpg", 2, "top20", 'C'), new CLink("TopListPlus", "pages.jpg", 2, "top20plus", 'C'), new CLink("TopListCategories", "pages.jpg", 2, "toplistcategories", 'C'),
new CLink("Astazi in muzica", "news_cat.jpg", 2, "today", 'B'),
new CLink("Setãri", "settings.jpg", 2, "settings", 'G'));
|