-
Notifications
You must be signed in to change notification settings - Fork 11
/
general.inc
executable file
·308 lines (308 loc) · 12.1 KB
/
general.inc
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
<?php
// $Id$
function list_chapters()
{
global $user;
/************************ start approve book details ************************/
/*$proposal_q = db_query("SELECT * FROM {textbook_companion_proposal} WHERE uid = %d ORDER BY id DESC LIMIT 1", $user->uid);
$proposal_data = db_fetch_object($proposal_q);*/
$query = db_select('textbook_companion_proposal');
$query->fields('textbook_companion_proposal');
$query->condition('uid', $user->uid);
$query->orderBy('id', 'DESC');
$query->range(0, 1);
$result = $query->execute();
$proposal_data = $result->fetchObject();
if (!$proposal_data)
{
drupal_set_message("Please submit a " . l('proposal', 'proposal') . ".", 'error');
drupal_goto('');
} //!$proposal_data
if ($proposal_data->proposal_status != 1 && $proposal_data->proposal_status != 4)
{
switch ($proposal_data->proposal_status)
{
case 0:
drupal_set_message(t('We have already received your proposal. We will get back to you soon.'), 'status');
drupal_goto('');
return;
break;
case 2:
drupal_set_message(t('Your proposal has been dis-approved. Please create another proposal ' . l('here', 'proposal') . '.'), 'error');
drupal_goto('');
return;
break;
case 3:
drupal_set_message(t('Congratulations! You have completed your last book proposal. You have to create another proposal ' . l('here', 'proposal') . '.'), 'status');
drupal_goto('');
return;
break;
default:
drupal_set_message(t('Invalid proposal state. Please contact site administrator for further information.'), 'error');
drupal_goto('');
return;
break;
} //$proposal_data->proposal_status
} //$proposal_data->proposal_status != 1 && $proposal_data->proposal_status != 4
/*$preference_q = db_query("SELECT * FROM {textbook_companion_preference} WHERE proposal_id = %d AND approval_status = 1 LIMIT 1", $proposal_data->id);
$preference_data = db_fetch_object($preference_q);*/
$query = db_select('textbook_companion_preference');
$query->fields('textbook_companion_preference');
$query->condition('proposal_id', $proposal_data->id);
$query->condition('approval_status', 1);
$query->range(0, 1);
$result = $query->execute();
$preference_data = $result->fetchObject();
if (!$preference_data)
{
drupal_set_message(t('Invalid Book Preference status. Please contact site administrator for further information.'), 'error');
drupal_goto('');
return;
} //!$preference_data
/************************ end approve book details **************************/
$return_html = '<br />';
$return_html .= '<strong>Title of the Book:</strong><br />' . $preference_data->book . '<br /><br />';
$return_html .= '<strong>Contributor Name:</strong><br />' . $proposal_data->full_name . '<br /><br />';
$return_html .= l('Upload Example Code', 'textbook_companion/code/upload') . '<br />';
/* get chapter list */
$chapter_rows = array();
/*$chapter_q = db_query("SELECT * FROM {textbook_companion_chapter} WHERE preference_id = %d ORDER BY number ASC", $preference_data->id);*/
$query = db_select('textbook_companion_chapter');
$query->fields('textbook_companion_chapter');
$query->condition('preference_id', $preference_data->id);
$query->orderBy('number', 'ASC');
$chapter_q = $query->execute();
while ($chapter_data = $chapter_q->fetchObject())
{
/* get example list */
/* $example_q = db_query("SELECT count(*) as example_count FROM {textbook_companion_example} WHERE chapter_id = %d", $chapter_data->id);
$example_data = db_fetch_object($example_q);*/
$query = db_select('textbook_companion_example');
$query->addExpression('count(*)', 'example_count');
$query->condition('chapter_id', $chapter_data->id);
$result = $query->execute();
$example_data = $result->fetchObject();
$chapter_rows[] = array(
$chapter_data->number,
$chapter_data->name . ' (' . l('Edit', 'textbook_companion/code/chapter/edit/' . $chapter_data->id) . ')',
$example_data->example_count,
l('View', 'textbook_companion/code/list_examples/' . $chapter_data->id)
);
} //$chapter_data = $chapter_q->fetchObject()
/* check if there are any chapters */
if (!$chapter_rows)
{
drupal_set_message(t('No uploads found.'), 'status');
return $return_html;
} //!$chapter_rows
$chapter_header = array(
'Chapter No.',
'Title of the Chapter',
'Uploaded Examples',
'Actions'
);
$return_html .= theme('table', array(
'header' => $chapter_header,
'rows' => $chapter_rows
));
return $return_html;
}
function list_examples()
{
global $user;
/************************ start approve book details ************************/
/*$proposal_q = db_query("SELECT * FROM {textbook_companion_proposal} WHERE uid = %d ORDER BY id DESC LIMIT 1", $user->uid);
$proposal_data = db_fetch_object($proposal_q);*/
$query = db_select('textbook_companion_proposal');
$query->fields('textbook_companion_proposal');
$query->condition('uid', $user->uid);
$query->orderBy('id', 'DESC');
$query->range(0, 1);
$result = $query->execute();
$proposal_data = $result->fetchObject();
if (!$proposal_data)
{
drupal_set_message("Please submit a " . l('proposal', 'proposal') . ".", 'error');
drupal_goto('');
} //!$proposal_data
if ($proposal_data->proposal_status != 1 && $proposal_data->proposal_status != 4)
{
switch ($proposal_data->proposal_status)
{
case 0:
drupal_set_message(t('We have already received your proposal. We will get back to you soon.'), 'status');
drupal_goto('');
return;
break;
case 2:
drupal_set_message(t('Your proposal has been dis-approved. Please create another proposal ' . l('here', 'proposal') . '.'), 'error');
drupal_goto('');
return;
break;
case 3:
drupal_set_message(t('Congratulations! You have completed your last book proposal. You have to create another proposal ' . l('here', 'proposal') . '.'), 'status');
drupal_goto('');
return;
break;
default:
drupal_set_message(t('Invalid proposal state. Please contact site administrator for further information.'), 'error');
drupal_goto('');
return;
break;
} //$proposal_data->proposal_status
} //$proposal_data->proposal_status != 1 && $proposal_data->proposal_status != 4
/*$preference_q = db_query("SELECT * FROM {textbook_companion_preference} WHERE proposal_id = %d AND approval_status = 1 LIMIT 1", $proposal_data->id);
$preference_data = db_fetch_object($preference_q);*/
$query = db_select('textbook_companion_preference');
$query->fields('textbook_companion_preference');
$query->condition('proposal_id', $proposal_data->id);
$query->condition('approval_status', 1);
$query->range(0, 1);
$result = $query->execute();
$preference_data = $result->fetchObject();
if (!$preference_data)
{
drupal_set_message(t('Invalid Book Preference status. Please contact site administrator for further information.'), 'error');
drupal_goto('');
return;
} //!$preference_data
/************************ end approve book details **************************/
/* get chapter details */
$chapter_id = arg(3);
/*$chapter_q = db_query("SELECT * FROM {textbook_companion_chapter} WHERE id = %d AND preference_id = %d LIMIT 1", $chapter_id, $preference_data->id);*/
$query = db_select('textbook_companion_chapter');
$query->fields('textbook_companion_chapter');
$query->condition('id', $chapter_id);
$query->condition('preference_id', $preference_data->id);
$query->range(0, 1);
$chapter_q = $query->execute();
if ($chapter_data = $chapter_q->fetchObject())
{
$return_html = '<br />';
$return_html .= '<strong>Title of the Book:</strong><br />' . $preference_data->book . '<br /><br />';
$return_html .= '<strong>Contributor Name:</strong><br />' . $proposal_data->full_name . '<br /><br />';
$return_html .= '<strong>Chapter Number:</strong><br />' . $chapter_data->number . '<br /><br />';
$return_html .= '<strong>Title of the Chapter:</strong><br />' . $chapter_data->name . '<br />';
} //$chapter_data = $chapter_q->fetchObject()
else
{
drupal_set_message(t('Invalid chapter.'), 'error');
drupal_goto('textbook_companion/code');
return;
}
$return_html .= '<br />' . l('Back to Chapter List', 'textbook_companion/code');
/* get example list */
$example_rows = array();
/*$example_q = db_query("SELECT * FROM {textbook_companion_example} WHERE chapter_id = %d ORDER BY
CAST(SUBSTRING_INDEX(number, '.', 1) AS BINARY) ASC,
CAST(SUBSTRING_INDEX(SUBSTRING_INDEX(number , '.', 2), '.', -1) AS UNSIGNED) ASC,
CAST(SUBSTRING_INDEX(SUBSTRING_INDEX(number , '.', -1), '.', 1) AS UNSIGNED) ASC", $chapter_id);*/
$query = db_select('textbook_companion_example');
$query->fields('textbook_companion_example');
$query->condition('chapter_id', $chapter_id);
$example_q = $query->execute();
while ($example_data = $example_q->fetchObject())
{
/* approval status */
$approval_status = '';
switch ($example_data->approval_status)
{
case 0:
$approval_status = 'Pending';
break;
case 1:
$approval_status = 'Approved';
break;
case 2:
$approval_status = 'Rejected';
break;
} //$example_data->approval_status
/* example files */
$example_files = '';
/*$example_files_q = db_query("SELECT * FROM {textbook_companion_example_files} WHERE example_id = %d ORDER BY filetype", $example_data->id);*/
$query = db_select('textbook_companion_example_files');
$query->fields('textbook_companion_example_files');
$query->condition('example_id', $example_data->id);
$query->orderBy('filetype', 'ASC');
$example_files_q = $query->execute();
while ($example_files_data = $example_files_q->fetchObject())
{
$file_type = '';
switch ($example_files_data->filetype)
{
case 'S':
$file_type = 'Main or Source';
break;
case 'R':
$file_type = 'Result';
break;
case 'X':
$file_type = 'xcos';
break;
default:
} //$example_files_data->filetype
$example_files .= l($example_files_data->filename, 'download/file/' . $example_files_data->id) . ' (' . $file_type . ')<br />';
} //$example_files_data = $example_files_q->fetchObject()
/* dependency files */
$dependency_files = '';
$dependency_files_q = db_query("SELECT dependency.id as dependency_id, dependency.filename as dependency_filename
FROM {textbook_companion_example_dependency} example_dependency JOIN {textbook_companion_dependency_files} dependency
ON example_dependency.dependency_id = dependency.id
WHERE example_dependency.example_id = :example_id", array(
':example_id' => $example_data->id
));
/*$query = db_select('textbook_companion_example_dependency', 'example_dependency');
$query->fields('dependency', array('id', 'filename'));
$query->innerJoin('textbook_companion_dependency_files', 'dependency', 'example_dependency.dependency_id = dependency.id');
$query->condition('example_dependency.example_id', $example_data->id);
$dependency_files_q = $query->execute();*/
while ($dependency_files_data = $dependency_files_q->fetchObject())
{
$dependency_files .= l($dependency_files_data->dependency_filename, 'download/dependency/' . $dependency_files_data->dependency_id) . ' (Dependency)<br />';
} //$dependency_files_data = $dependency_files_q->fetchObject()
$example_files .= $dependency_files;
if ($example_data->approval_status == 0)
{
$example_rows[] = array(
'data' => array(
$example_data->number,
$example_data->caption,
$approval_status,
$example_files,
l('Edit', 'textbook_companion/code/edit/' . $example_data->id)
/*l('Edit', 'textbook_companion/code/edit/' . $example_data->id) . ' | ' . l('Delete', 'textbook_companion/code/delete/' . $example_data->id, array(
'attributes' => array(
'onClick' => 'return confirm("Are you sure you want to delete the example?")'
)
))*/
),
'valign' => 'top'
);
} //$example_data->approval_status == 0
else
{
$example_rows[] = array(
'data' => array(
$example_data->number,
$example_data->caption,
$approval_status,
$example_files,
l('Download', 'download/example/' . $example_data->id)
),
'valign' => 'top'
);
}
} //$example_data = $example_q->fetchObject()
$example_header = array(
'Example No.',
'Caption',
'Status',
'Files',
'Action'
);
$return_html .= theme('table', array(
'header' => $example_header,
'rows' => $example_rows
));
return $return_html;
}