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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
|
Document Information
====================
Name of the Document: FOSSEE Dynamic Website
Date:23/05/2017
Author: Priyanka Bhagwat
Designation: Software Engineer
Introduction
============
This document focuses on the development of the new FOSSEE Website.
Website
=======
http://fossee.in/
Assumptions
===========
It is assumed that the readers of this document are familiar with the
Drupal 7, PHP, MySQL and software engineering.
Module Requirements
===================
To achieve this feature the following modules are required
Views
Panels
Entity
Token
Radix Layout
Quicktabs
Radix Layout
Owl Carousel
Entity\_reference
Rules
Date
Link
Linkicon
Ctools
Fieldaccess
Auto\_entitylabel
Disable Field
Field collection
Field Conditional State
SMTP Authentication Support
**Website Theme**
-----------------
**Choose an Existing Starterkit**
---------------------------------
- *CDN Starterkit* <https://drupal-bootstrap.org/api/bootstrap/starterkits%21cdn%21README.md/group/subtheme_cdn/7>
- *Less Starterkit* <https://drupal-bootstrap.org/api/bootstrap/starterkits%21less%21README.md/group/subtheme_less/7>
- *Sass Starterkit* <https://drupal-bootstrap.org/api/bootstrap/starterkits%21sass%21README.md/group/subtheme_sass/7>
Here we are using the CDN Starterkit.
**Create a New Sub-theme**
--------------------------
1. Copy over one of the starterkits you have chosen from the
./bootstrap/starterkits folder into sites/all/themes or a
respective sites/\*/themes folder.
2. Rename the folder to a unique machine readable name. This will be
your sub-theme's "name". For this example and future examples
we'll use subtheme.
3. Rename ./subtheme/cdn.starterkit or, if using the LESS Starterkit,
./subtheme/less.starterkit to match the folder name and append
.info (e.g. ./subtheme/subtheme.info).
4. Open ./subtheme/subtheme.info and change the name, description and
any other properties to suite your needs.
WARNING: Ensure that the .starterkit suffix is not present on your
sub-theme's .info filename. This suffix is simply a stop gap measure
to ensure that the bundled starter kit sub-theme cannot be enabled
or used directly. This helps people unfamiliar with Drupal avoid
modifying the starter kit sub-theme directly and instead forces them
to create a new sub-theme to modify.
**Enable Your New Sub-theme**
-----------------------------
In your Drupal site, navigate to admin/appearance and click the Enable
and set default link next to your newly created sub-theme.
**Content Types**
-----------------
**Structure->Content types**
Designation
|image0|
Faculty members
|image1|
FOSSEE Projects
|image2|
FOSSEE Projects contacts
|image3|
Generic links
|image4|
Team Members
|image5|
Resources
|image6|
Article
|image7|
Activities
|image8|
**Views**
---------
**Structure ->Views**
**Faculty members**
**Query**
SELECT node.nid AS nid, node.created AS node\_created, 'node' AS
field\_data\_field\_faculty\_name\_node\_entity\_type, 'node' AS
field\_data\_field\_faculty\_link\_node\_entity\_type
FROM
{node} node
WHERE (( (node.status = '1') AND (node.type IN ('faculty\_members')) ))
ORDER BY node\_created ASC
|image9|
**Output**
|image10|
**FOSSEE Projects**
**Query**
field\_data\_field\_project\_link\_node\_entity\_type, 'node' AS
SELECT node.nid AS nid, node.created AS node\_created, 'node' AS
field\_data\_field\_project\_name\_node\_entity\_type, 'node' AS
field\_data\_field\_project\_logo\_image\_node\_entity\_type, 'node' AS
field\_data\_body\_node\_entity\_type
FROM
{node} node
INNER JOIN {field\_data\_field\_project\_status}
field\_data\_field\_project\_status ON node.nid =
field\_data\_field\_project\_status.entity\_id AND
(field\_data\_field\_project\_status.entity\_type = 'node' AND field\_data\_field\_project\_status.deleted = '0')
WHERE (( (node.status = '1') AND (node.type IN ('projects')) AND
(field\_data\_field\_project\_status.field\_project\_status\_value =
'0') ))
ORDER BY node\_created DESC
|image11|
**Rewrite results**
|image12|
**Output**
|image13|
**Contact ID**
**Query**
SELECT node.nid AS nid, node.created AS node\_created, 'node' AS
field\_data\_field\_project\_contact\_node\_entity\_type, 'node' AS
field\_data\_field\_contact\_email\_id\_node\_entity\_type
FROM
{node} node
WHERE (( (node.status = '1') AND (node.type IN
('fossee\_projects\_contact\_id')) ))
ORDER BY node\_created ASC
|image14|
**Output**
|image15|
**Generic Content**
**BLOCK - Footer-data Files **
**Query**
SELECT node.title AS node\_title, node.nid AS nid, node.created AS
node\_created, 'node' AS
field\_data\_field\_generic\_image\_link\_node\_entity\_type, 'node'
AS field\_data\_field\_generic\_image\_node\_entity\_type
FROM
{node} node
INNER JOIN {field\_data\_field\_tags} field\_data\_field\_tags ON
node.nid = field\_data\_field\_tags.entity\_id AND
(field\_data\_field\_tags.entity\_type = 'node' AND
field\_data\_field\_tags.deleted = '0')
WHERE (( (node.status = '1') AND (node.type IN ('generic\_images'))
AND (field\_data\_field\_tags.field\_tags\_tid = '5') ))
ORDER BY node\_created DESC
LIMIT 5 OFFSET 0
|image16|
**BLOCK- Sponsor Section **
**Query**
SELECT node.title AS node\_title, node.nid AS nid, node.created AS
node\_created, 'node' AS
field\_data\_field\_generic\_image\_link\_node\_entity\_type, 'node'
AS field\_data\_field\_generic\_image\_node\_entity\_type
FROM
{node} node
INNER JOIN {field\_data\_field\_tags} field\_data\_field\_tags ON
node.nid = field\_data\_field\_tags.entity\_id AND
(field\_data\_field\_tags.entity\_type = 'node' AND
field\_data\_field\_tags.deleted = '0')
WHERE (( (node.status = '1') AND (node.type IN ('generic\_images'))
AND (field\_data\_field\_tags.field\_tags\_tid = '6') ))
ORDER BY node\_created DESC
LIMIT 5 OFFSET 0
|image17|
**Output**
|image18|
**Resources**
**Query**
SELECT node.nid AS nid, node.created AS node\_created, 'node' AS
field\_data\_field\_project\_resources\_node\_entity\_type, 'node' AS
field\_data\_field\_project\_resocurces\_link\_node\_entity\_type
FROM
{node} node
WHERE (( (node.status = '1') AND (node.type IN ('resources')) ))
ORDER BY node\_created ASC
|image19|
**Output**
|image20|
**Top Slider**
**Query**
SELECT node.nid AS nid, node.title AS node\_title, node.created AS
node\_created, 'node' AS field\_data\_field\_image\_node\_entity\_type
FROM
{node} node
INNER JOIN {taxonomy\_index} taxonomy\_index ON node.nid =
taxonomy\_index.nid
WHERE (( (node.status = '1') AND (node.type IN ('article')) AND
(taxonomy\_index.tid = '4') ))
ORDER BY node\_created DESC
LIMIT 5 OFFSET 0
|image21|
**Rewrite results**
|image22|
**Output**
|image23|
**Site Content**
**Query**
**BLOCK -News**
SELECT node.title AS node\_title, node.nid AS nid, node.created AS
node\_created, 'node' AS field\_data\_field\_link\_node\_entity\_type
FROM
{node} node
INNER JOIN {field\_data\_field\_tags} field\_data\_field\_tags ON
node.nid = field\_data\_field\_tags.entity\_id AND
(field\_data\_field\_tags.entity\_type = 'node' AND
field\_data\_field\_tags.deleted = '0')
WHERE (( (node.status = '1') AND (node.type IN ('article')) AND
(field\_data\_field\_tags.field\_tags\_tid = '2') ))
ORDER BY node\_created DESC
LIMIT 5 OFFSET 0
|image24|
**BLOCK- Events**
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
SELECT node.title AS node\_title, node.nid AS nid, node.created AS node\_created FROM
{node} node
INNER JOIN {field\_data\_field\_tags} field\_data\_field\_tags ON node.nid = field\_data\_field\_tags.entity\_id AND (field\_data\_field\_tags.entity\_type = 'node' AND field\_data\_field\_tags.deleted = '0') |
WHERE (( (node.status = '1') AND (node.type IN ('article')) AND (field\_data\_field\_tags.field\_tags\_tid = '3') ))
ORDER BY node\_created DESC
LIMIT 5 OFFSET 0
+====================================================================================================================================================================================================================+
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|image25|
**BLOCK- News Page**
SELECT node.title AS node\_title, node.nid AS nid, node.created AS
node\_created
FROM
{node} node
WHERE (( (node.status = '1') AND (node.type IN ('article')) ))
ORDER BY node\_created DESC
LIMIT 15 OFFSET 0
**Output**
|image26|
Team Members
Query
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
SELECT node.nid AS nid, node.created AS node\_created, 'node' AS field\_data\_field\_team\_members\_name\_node\_entity\_type, 'node' AS field\_data\_field\_member\_designation\_node\_entity\_type, 'node' AS field\_data\_field\_projects\_node\_entity\_type
FROM {node} node
LEFT JOIN {field\_data\_field\_employment\_type\_} field\_data\_field\_employment\_type\_\_value\_0 ON node.nid = field\_data\_field\_employment\_type\_\_value\_0.entity\_id AND field\_data\_field\_employment\_type\_\_value\_0.field\_employment\_type\_\_value = '0'
WHERE (( (node.status = '1') AND (node.type IN ('team\_members')) AND( (field\_data\_field\_employment\_type\_\_value\_0.field\_employment\_type\_\_value = '0') )))
ORDER BY node\_created ASC
+=============================================================================================================================================================================================================================================================================+
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|image27|
**Output**
|image28|
.. |image0| image:: media/designation.png
:width: 6.92188in
:height: 1.45833in
.. |image1| image:: media/faculty-members.png
:width: 6.88021in
:height: 2.00000in
.. |image2| image:: media/fossee-projects.png
:width: 6.79167in
:height: 3.36979in
.. |image3| image:: media/fossee-contact.png
:width: 6.70313in
:height: 2.03125in
.. |image4| image:: media/generic-links.png
:width: 6.73958in
:height: 2.23438in
.. |image5| image:: media/team-members.png
:width: 6.27083in
:height: 2.51563in
.. |image6| image:: media/resources.png
:width: 6.27083in
:height: 1.65104in
.. |image7| image:: media/article.png
:width: 6.26772in
:height: 1.65278in
.. |image8| image:: media/activities.png
:width: 6.27083in
:height: 1.76563in
.. |image9| image:: media/view-block-faculty-members.png
:width: 6.73438in
:height: 3.64583in
.. |image10| image:: media/output-faculty.png
:width: 6.81250in
:height: 3.34896in
.. |image11| image:: media/view-block-fossee-projects.png
:width: 6.27083in
:height: 3.58854in
.. |image12| image:: media/block-view-fossee-projects-rewrite.png
:width: 6.26772in
:height: 4.48611in
.. |image13| image:: media/projects.png
:width: 6.26772in
:height: 5.93056in
.. |image14| image:: media/view-block-contact-id.png
:width: 6.73438in
:height: 3.15625in
.. |image15| image:: media/output-contact-id.png
:width: 6.27083in
:height: 3.13021in
.. |image16| image:: media/view-block-generic-footer.png
:width: 6.81250in
:height: 3.40104in
.. |image17| image:: media/view-block-generic-sponsor.png
:width: 6.74479in
:height: 3.41667in
.. |image18| image:: media/generic-output.png
:width: 6.26772in
:height: 2.01389in
.. |image19| image:: media/view-block-resources.png
:width: 6.80729in
:height: 3.60417in
.. |image20| image:: media/output-resources.png
:width: 6.73958in
:height: 3.53646in
.. |image21| image:: media/view-block-topslider.png
:width: 6.26772in
:height: 2.93056in
.. |image22| image:: media/view-block-topslider-rewrite.png
:width: 6.26772in
:height: 4.09722in
.. |image23| image:: media/output-topslider.png
:width: 6.76563in
:height: 2.38542in
.. |image24| image:: media/view-block-new.png
:width: 6.26772in
:height: 2.90278in
.. |image25| image:: media/view-block-events.png
:width: 6.80208in
:height: 3.25521in
.. |image26| image:: media/output-sitecontent.png
:width: 6.81771in
:height: 3.18750in
.. |image27| image:: media/view-block-team.png
:width: 6.93229in
:height: 3.43750in
.. |image28| image:: media/output-team.png
:width: 6.83854in
:height: 4.01042in
|