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
|
<?php
function om_pssp_abstract_bulk_approval_form($form, &$form_state)
{
$options_first = _bulk_list_of_om_pssp_project();
$selected = isset($form_state['values']['om_pssp_project']) ? $form_state['values']['om_pssp_project'] : key($options_first);
$form = array();
$form['om_pssp_project'] = array(
'#type' => 'select',
'#title' => t('Title of the power system simulation project'),
'#options' => _bulk_list_of_om_pssp_project(),
'#default_value' => $selected,
'#ajax' => array(
'callback' => 'ajax_bulk_om_pssp_abstract_details_callback'
),
'#suffix' => '<div id="ajax_selected_om_pssp"></div><div id="ajax_selected_om_pssp_pdf"></div>'
);
$form['om_pssp_actions'] = array(
'#type' => 'select',
'#title' => t('Please select action for power system simulation project'),
'#options' => _bulk_list_om_pssp_actions(),
'#default_value' => 0,
'#prefix' => '<div id="ajax_selected_om_pssp_action" style="color:red;">',
'#suffix' => '</div>',
'#states' => array(
'invisible' => array(
':input[name="om_pssp_project"]' => array(
'value' => 0
)
)
)
);
$form['message'] = array(
'#type' => 'textarea',
'#title' => t('Please specify the reason for marking resubmit/disapproval'),
'#prefix' => '<div id= "message_submit">',
'#states' => array(
'visible' => array(
array(
':input[name="om_pssp_actions"]' => array(
'value' => 3
)
),
'or',
array(
':input[name="om_pssp_actions"]' => array(
'value' => 2
)
)
)
)
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Submit'),
'#states' => array(
'invisible' => array(
':input[name="lab"]' => array(
'value' => 0
)
)
)
);
return $form;
}
function ajax_bulk_om_pssp_abstract_details_callback($form, $form_state)
{
$commands = array();
$om_pssp_project_default_value = $form_state['values']['om_pssp_project'];
if ($om_pssp_project_default_value != 0)
{
$commands[] = ajax_command_html('#ajax_selected_om_pssp', _om_pssp_details($om_pssp_project_default_value));
$form['om_pssp_actions']['#options'] = _bulk_list_om_pssp_actions();
$commands[] = ajax_command_replace('#ajax_selected_om_pssp_action', drupal_render($form['om_pssp_actions']));
} //$om_pssp_project_default_value != 0
else
{
$commands[] = ajax_command_html('#ajax_selected_om_pssp', '');
$commands[] = ajax_command_data('#ajax_selected_om_pssp', 'form_state_value_select', $form_state['values']['om_pssp_project']);
}
return array(
'#type' => 'ajax',
'#commands' => $commands
);
}
/************************************************************/
function om_pssp_abstract_bulk_approval_form_submit($form, &$form_state)
{
global $user;
$msg = '';
$root_path = om_pssp_path();
if ($form_state['clicked_button']['#value'] == 'Submit')
{
if ($form_state['values']['om_pssp_project'])
// om_pssp_abstract_del_lab_pdf($form_state['values']['om_pssp_project']);
if (user_access('om pssp bulk manage abstract'))
{
$query = db_select('om_pssp_proposal');
$query->fields('om_pssp_proposal');
$query->condition('id', $form_state['values']['om_pssp_project']);
$user_query = $query->execute();
$user_info = $user_query->fetchObject();
$user_data = user_load($user_info->uid);
if ($form_state['values']['om_pssp_actions'] == 1)
{
// approving entire project //
$query = db_select('om_pssp_submitted_abstracts');
$query->fields('om_pssp_submitted_abstracts');
$query->condition('proposal_id', $form_state['values']['om_pssp_project']);
$abstracts_q = $query->execute();
$experiment_list = '';
while ($abstract_data = $abstracts_q->fetchObject())
{
db_query("UPDATE {om_pssp_submitted_abstracts} SET abstract_approval_status = 1, is_submitted = 1, approver_uid = :approver_uid WHERE id = :id", array(
':approver_uid' => $user->uid,
':id' => $abstract_data->id
));
db_query("UPDATE {om_pssp_submitted_abstracts_file} SET file_approval_status = 1, approvar_uid = :approver_uid WHERE submitted_abstract_id = :submitted_abstract_id", array(
':approver_uid' => $user->uid,
':submitted_abstract_id' => $abstract_data->id
));
} //$abstract_data = $abstracts_q->fetchObject()
drupal_goto('powersystems/pssp/manage-proposal/all');
drupal_set_message(t('Approved power system simulation project.'), 'status');
// email
$email_subject = t('[!site_name][power system simulation Project] Your uploaded power system simulation project have been approved', array(
'!site_name' => variable_get('site_name', '')
));
$email_body = array(
0 => t('
Dear !user_name,
Congratulations!
Your simulation and abstract for Power Systems Simulation Project at FOSSEE with the following details have been approved.
Full Name: ' . $user_info->name_title . ' ' . $user_info->contributor_name . '
Email : ' . $user_data->mail . '
University/Institute : ' . $user_info->university . '
City : ' . $user_info->city . '
Project Title : ' . $user_info->project_title . '
Description of the simulation: ' . $user_info->description .'
Kindly send us the internship forms as early as possible for processing your honorarium on time. In case you have already sent these forms, please share the the consignment number or tracking id with us.
Note: It will take upto 30 days from the time we receive your forms, to process your honorarium.
Best Wishes,
!site_name Power Systems Team,
FOSSEE,IIT Bombay', array(
'!site_name' => variable_get('site_name', ''),
'!user_name' => $user_data->name
))
);
/** sending email when everything done **/
$email_to = $user_data->mail;
$from = variable_get('om_pssp_from_email', '');
$bcc = variable_get('om_pssp_emails', '');
$cc = variable_get('om_pssp_cc_emails', '');
$params['standard']['subject'] = $email_subject;
$params['standard']['body'] = $email_body;
$params['standard']['headers'] = array(
'From' => $from,
'MIME-Version' => '1.0',
'Content-Type' => 'text/plain; charset=UTF-8; format=flowed; delsp=yes',
'Content-Transfer-Encoding' => '8Bit',
'X-Mailer' => 'Drupal',
'Cc' => $cc,
'Bcc' => $bcc
);
if (!drupal_mail('om_pssp', 'standard', $email_to, language_default(), $params, $from, TRUE))
{
$msg = drupal_set_message('Error sending email message.', 'error');
} //!drupal_mail('om_pssp', 'standard', $email_to, language_default(), $params, $from, TRUE)
} //$form_state['values']['om_pssp_actions'] == 1
elseif ($form_state['values']['om_pssp_actions'] == 2)
{
if (strlen(trim($form_state['values']['message'])) <= 30)
{
form_set_error('message', t(''));
$msg = drupal_set_message("Please mention the reason for marking resubmit. Minimum 30 character required", 'error');
return $msg;
}
//pending review entire project
$query = db_select('om_pssp_submitted_abstracts');
$query->fields('om_pssp_submitted_abstracts');
$query->condition('proposal_id', $form_state['values']['om_pssp_project']);
$abstracts_q = $query->execute();
$experiment_list = '';
while ($abstract_data = $abstracts_q->fetchObject())
{
db_query("UPDATE {om_pssp_submitted_abstracts} SET abstract_approval_status = 0, is_submitted = 0, approver_uid = :approver_uid WHERE id = :id", array(
':approver_uid' => $user->uid,
':id' => $abstract_data->id
));
db_query("UPDATE {om_pssp_proposal} SET is_submitted = 0, approver_uid = :approver_uid WHERE id = :id", array(
':approver_uid' => $user->uid,
':id' => $abstract_data->proposal_id
));
db_query("UPDATE {om_pssp_submitted_abstracts_file} SET file_approval_status = 0, approvar_uid = :approver_uid WHERE submitted_abstract_id = :submitted_abstract_id", array(
':approver_uid' => $user->uid,
':submitted_abstract_id' => $abstract_data->id
));
} //$abstract_data = $abstracts_q->fetchObject()
drupal_set_message(t('Resubmit the project files'), 'status');
// email
$email_subject = t('[!site_name][power system simulation Project] Your uploaded power system simulation project have been marked as pending', array(
'!site_name' => variable_get('site_name', '')
));
$email_body = array(
0 => t('
Dear !user_name,
Kindly resubmit the project files for the project: ' . $user_info->project_title . '.
Description of the simulation: ' . $user_info->description . '
Reason: ' . $form_state['values']['message'] . '
Looking forward for the re-submission from you with the above suggested changes.
Best Wishes,
!site_name Power Systems Team,
FOSSEE,IIT Bombay', array(
'!site_name' => variable_get('site_name', ''),
'!user_name' => $user_data->name
))
);
/** sending email when everything done **/
$email_to = $user_data->mail;
$from = variable_get('om_pssp_from_email', '');
$bcc = variable_get('om_pssp_emails', '');
$cc = variable_get('om_pssp_cc_emails', '');
$params['standard']['subject'] = $email_subject;
$params['standard']['body'] = $email_body;
$params['standard']['headers'] = array(
'From' => $from,
'MIME-Version' => '1.0',
'Content-Type' => 'text/plain; charset=UTF-8; format=flowed; delsp=yes',
'Content-Transfer-Encoding' => '8Bit',
'X-Mailer' => 'Drupal',
'Cc' => $cc,
'Bcc' => $bcc
);
if (!drupal_mail('om_pssp', 'standard', $email_to, language_default(), $params, $from, TRUE))
{
drupal_set_message('Error sending email message.', 'error');
} //!drupal_mail('om_pssp', 'standard', $email_to, language_default(), $params, $from, TRUE)
} //$form_state['values']['om_pssp_actions'] == 2
elseif ($form_state['values']['om_pssp_actions'] == 3) //disapprove and delete entire power system simulation project
{
if (strlen(trim($form_state['values']['message'])) <= 30)
{
form_set_error('message', t(''));
$msg = drupal_set_message("Please mention the reason for disapproval. Minimum 30 character required", 'error');
return $msg;
} //strlen(trim($form_state['values']['message'])) <= 30
if (!user_access('om pssp bulk delete code'))
{
$msg = drupal_set_message(t('You do not have permission to Bulk Dis-Approved and Deleted Entire Lab.'), 'error');
return $msg;
} //!user_access('om_pssp bulk delete code')
if (om_pssp_abstract_delete_project($form_state['values']['om_pssp_project'])) //////
{
drupal_set_message(t('Dis-Approved and Deleted Entire power system simulation project.'), 'status');
$email_subject = t('[!site_name][power system simulation Project] Your uploaded power system simulation project have been marked as dis-approved', array(
'!site_name' => variable_get('site_name', '')
));
$email_body = array(
0 => t('
Dear !user_name,
We regret to inform you that your simulation and abstract for Power Systems Simulation Project at FOSSEE with the following details have been disapproved:
Full Name: ' . $user_info->name_title . ' ' . $user_info->contributor_name . '
Email : ' . $user_data->mail . '
University/Institute : ' . $user_info->university . '
City : ' . $user_info->city . '
Project Title : ' . $user_info->project_title . '
Description of the simulation: ' . $user_info->description .'
Reason for dis-approval: ' . $form_state['values']['message'] . '
Kindly note that the incorrect files will be deleted from all our databases.
Thank you for participating in the Power Systems Simulation Project. You are welcome to submit a new proposal.
Best Wishes,
!site_name Power Systems Team,
FOSSEE,IIT Bombay', array(
'!site_name' => variable_get('site_name', ''),
'!user_name' => $user_data->name
))
);
$email_to = $user_data->mail;
$from = variable_get('om_pssp_from_email', '');
$bcc = variable_get('om_pssp_emails', '');
$cc = variable_get('om_pssp_cc_emails', '');
$params['standard']['subject'] = $email_subject;
$params['standard']['body'] = $email_body;
$params['standard']['headers'] = array(
'From' => $from,
'MIME-Version' => '1.0',
'Content-Type' => 'text/plain; charset=UTF-8; format=flowed; delsp=yes',
'Content-Transfer-Encoding' => '8Bit',
'X-Mailer' => 'Drupal',
'Cc' => $cc,
'Bcc' => $bcc
);
if (!drupal_mail('om_pssp', 'standard', $email_to, language_default(), $params, $from, TRUE))
{
drupal_set_message('Error sending email message.', 'error');
}
} //om_pssp_abstract_delete_project($form_state['values']['om_pssp_project'])
else
{
drupal_set_message(t('Error Dis-Approving and Deleting Entire power system simulation project.'), 'error');
}
// email
} //$form_state['values']['om_pssp_actions'] == 3
} //user_access('om_pssp project bulk manage code')
return $msg;
} //$form_state['clicked_button']['#value'] == 'Submit'
}
/**********************************************************/
function _bulk_list_of_om_pssp_project()
{
$project_titles = array(
'0' => 'Please select...'
);
$query = db_select('om_pssp_proposal');
$query->fields('om_pssp_proposal');
$query->condition('is_submitted', 1);
$query->condition('approval_status', 1);
$query->orderBy('project_title', 'ASC');
$project_titles_q = $query->execute();
while ($project_titles_data = $project_titles_q->fetchObject())
{
$project_titles[$project_titles_data->id] = $project_titles_data->project_title . ' (Proposed by ' . $project_titles_data->contributor_name . ')';
} //$project_titles_data = $project_titles_q->fetchObject()
return $project_titles;
}
function _bulk_list_om_pssp_actions()
{
$om_pssp_actions = array(
0 => 'Please select...'
);
$om_pssp_actions[1] = 'Approve Entire power system simulation Project';
$om_pssp_actions[2] = 'Resubmit Project files';
$om_pssp_actions[3] = 'Dis-Approve Entire power system simulation Project (This will delete power system simulation Project)';
//$om_pssp_actions[4] = 'Delete Entire power system simulation Project Including Proposal';
return $om_pssp_actions;
}
function _om_pssp_details($om_pssp_proposal_id)
{
$return_html = "";
$query_pro = db_select('om_pssp_proposal');
$query_pro->fields('om_pssp_proposal');
$query_pro->condition('id', $om_pssp_proposal_id);
$abstracts_pro = $query_pro->execute()->fetchObject();
//var_dump($abstracts_pro);die;
$query_pdf = db_select('om_pssp_submitted_abstracts_file');
$query_pdf->fields('om_pssp_submitted_abstracts_file');
$query_pdf->condition('proposal_id', $om_pssp_proposal_id);
$query_pdf->condition('filetype', 'A');
$abstracts_pdf = $query_pdf->execute()->fetchObject();
if ($abstracts_pdf == TRUE)
{
if ($abstracts_pdf->filename != "NULL" || $abstracts_pdf->filename != "")
{
$abstract_filename = $abstracts_pdf->filename;
} //$abstracts_pdf->filename != "NULL" || $abstracts_pdf->filename != ""
else
{
$abstract_filename = "File not uploaded";
}
} //$abstracts_pdf == TRUE
else
{
$abstract_filename = "File not uploaded";
}
$query_process = db_select('om_pssp_submitted_abstracts_file');
$query_process->fields('om_pssp_submitted_abstracts_file');
$query_process->condition('proposal_id', $om_pssp_proposal_id);
$query_process->condition('filetype', 'S');
$abstracts_query_process = $query_process->execute()->fetchObject();
$query = db_select('om_pssp_submitted_abstracts');
$query->fields('om_pssp_submitted_abstracts');
$query->condition('proposal_id', $om_pssp_proposal_id);
$abstracts_q = $query->execute()->fetchObject();
if($abstracts_q->other_libraries_used == 1)
{
$other_libraries_used = "Yes";
}
else
{
$other_libraries_used = "No";
}
if ($abstracts_q)
{
if ($abstracts_q->is_submitted == 0)
{
//drupal_set_message(t('Abstract is not submmited yet.'), 'error', $repeat = FALSE);
//return;
} //$abstracts_q->is_submitted == 0
} //$abstracts_q
//var_dump($abstracts_query_process);die;
if ($abstracts_query_process == TRUE)
{
if ($abstracts_query_process->filename != "NULL" || $abstracts_query_process->filename != "")
{
$abstracts_query_process_filename = $abstracts_query_process->filename;
} //$abstracts_query_process->filename != "NULL" || $abstracts_query_process->filename != ""
else
{
$abstracts_query_process_filename = "File not uploaded";
}
} //$abstracts_query_process == TRUE
else
{
$url = l('Upload abstract', 'powersystems/pssp/abstract-code/upload');
$abstracts_query_process_filename = "File not uploaded";
}
$download_om_pssp = l('Download power system simulation project','powersystems/pssp/full-download/project/'.$om_pssp_proposal_id);
$return_html .= '<strong>Proposer Name:</strong><br />' . $abstracts_pro->name_title . ' ' . $abstracts_pro->contributor_name . '<br /><br />';
$return_html .= '<strong>Title of the power system simulation Project:</strong><br />' . $abstracts_pro->project_title . '<br /><br />';
$return_html .= '<strong>Other libraries used:</strong><br />' . $other_libraries_used . '<br /><br />';
$return_html .= '<strong>Uploaded an abstract (brief outline) of the project:</strong><br />' . $abstract_filename . '<br /><br />';
$return_html .= '<strong>Upload the power system simulation for the developed process:</strong><br />' . $abstracts_query_process_filename . '<br /><br />';
$return_html .= $download_om_pssp;
return $return_html;
}
|