-
Notifications
You must be signed in to change notification settings - Fork 0
/
img_variables.php
149 lines (126 loc) · 3.69 KB
/
img_variables.php
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<?php
$project1 = array(
'title' =>'Swarajya',
'images' => array(
'1' => 'img/BIRD EYE VIEW_Neptune Swarjya.jpg'
)
);
$project2 = array(
'title' =>'Codename Smash Hit',
'images' => array(
'1' => 'img/high-street-retail/hsr1.jpg',
'2' => 'img/high-street-retail/hsr2.jpg',
'3' => 'img/high-street-retail/hsr3.jpg',
'4' => 'img/high-street-retail/hsr4.jpg',
'5' => 'img/high-street-retail/hsr5.jpg'
)
);
$project3 = array(
'title' =>'Supreme 19',
'images' => array(
'1' => 'img/dream-housing/bird-eye-view_dream-housing.jpg'
)
);
$project4 = array(
'title' =>'Eastern Business District',
'images' => array(
'1' => 'img/high-street-retail/hsr1.jpg',
'2' => 'img/high-street-retail/hsr2.jpg',
'3' => 'img/high-street-retail/hsr3.jpg',
'4' => 'img/high-street-retail/hsr4.jpg',
'5' => 'img/high-street-retail/hsr5.jpg'
)
);
$project5 = array(
'title' =>'Endeavour',
'images' => array(
'1' => 'img/dream-housing/bird-eye-view_dream-housing.jpg'
)
);
$project6 = array(
'title' =>'Elegant Residence',
'images' => array(
'1' => 'img/high-street-retail/hsr1.jpg',
'2' => 'img/high-street-retail/hsr2.jpg',
'3' => 'img/high-street-retail/hsr3.jpg',
'4' => 'img/high-street-retail/hsr4.jpg',
'5' => 'img/high-street-retail/hsr5.jpg'
)
);
$project7 = array(
'title' =>'IPG Daughters Pride',
'images' => array(
'1' => 'img/dream-housing/bird-eye-view_dream-housing.jpg'
)
);
$project8 = array(
'title' =>'HDFC Ergo',
'images' => array(
'1' => 'img/high-street-retail/hsr1.jpg',
'2' => 'img/high-street-retail/hsr2.jpg',
'3' => 'img/high-street-retail/hsr3.jpg',
'4' => 'img/high-street-retail/hsr4.jpg',
'5' => 'img/high-street-retail/hsr5.jpg'
)
);
$project9 = array(
'title' =>'Urban Cafe',
'images' => array(
'1' => 'img/dream-housing/bird-eye-view_dream-housing.jpg'
)
);
$project10 = array(
'title' =>'AND Agasan',
'images' => array(
'1' => 'img/high-street-retail/hsr1.jpg',
'2' => 'img/high-street-retail/hsr2.jpg',
'3' => 'img/high-street-retail/hsr3.jpg',
'4' => 'img/high-street-retail/hsr4.jpg',
'5' => 'img/high-street-retail/hsr5.jpg'
)
);
$project11 = array(
'title' =>'Taj Hotels Regional Office',
'images' => array(
'1' => 'img/dream-housing/bird-eye-view_dream-housing.jpg'
)
);
$project12 = array(
'title' =>'Neptune EBD',
'images' => array(
'1' => 'img/high-street-retail/hsr1.jpg',
'2' => 'img/high-street-retail/hsr2.jpg',
'3' => 'img/high-street-retail/hsr3.jpg',
'4' => 'img/high-street-retail/hsr4.jpg',
'5' => 'img/high-street-retail/hsr5.jpg'
)
);
$project13 = array(
'title' =>'3D Floor Plan',
'images' => array(
'1' => 'img/dream-housing/bird-eye-view_dream-housing.jpg'
)
);
$project14 = array(
'title' =>'2D Floor Plan',
'images' => array(
'1' => 'img/high-street-retail/hsr1.jpg',
'2' => 'img/high-street-retail/hsr2.jpg',
'3' => 'img/high-street-retail/hsr3.jpg',
'4' => 'img/high-street-retail/hsr4.jpg',
'5' => 'img/high-street-retail/hsr5.jpg'
)
);
$projects = array(
'1' => $project1,
'2' => $project2,
'3' => $project3,
'4' => $project4,
'5' => $project5,
'6' => $project6,
'7' => $project7,
'8' => $project8,
'9' => $project9,
'8' => $project10
);
?>