summaryrefslogtreecommitdiff
path: root/arduino_projects_blog.module
blob: 76acdb12a8aafabff5a453e2cb598024be0ec39d (plain)
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
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
<?php
// $Id$
/*error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);*/
require_once('general_deletion.inc');
require_once('email.inc');
/**
 * Implementation of hook_menu().
 */
function arduino_projects_blog_menu()
{
	$items = array();
	/* PROPOSAL */
	$items['arduino-projects/proposal'] = array(
		'title' => 'Arduino Projects Proposal Form',
		'description' => 'Arduino Projects Proposal Form',
		'page callback' => 'drupal_get_form',
		'page arguments' => array(
			'arduino_projects_blog_proposal_form'
		),
		'access arguments' => array(
			'arduino projects create proposal'
		),
		'type' => MENU_NORMAL_ITEM,
		'file' => 'proposal.inc'
	);
	$items['arduino-projects/my-proposals'] = array(
		'title' => 'My Arduino Projects Proposals',
		'description' => 'My Arduino Projects Proposals',
		'page callback' => 'arduino_projects_blog_my_proposal',
		'access callback' => 'user_access',
		'access arguments' => array(
			'arduino projects display own proposal'
		),
		'file' => 'proposal.inc'
	);
	$items['arduino-projects/my-proposals/edit'] = array(
		'title' => 'Edit My Proposal',
		'description' => 'Edit My Proposal',
		'page callback' => 'drupal_get_form',
		'page arguments' => array(
			'arduino_projects_blog_my_proposal_edit_form'
		),
		'access arguments' => array(
			'arduino projects edit own proposal'
		),
		'type' => MENU_CALLBACK,
		'file' => 'my_proposals.inc'
	);
	$items['arduino-projects/my-proposals/view'] = array(
		'title' => 'View My Proposal',
		'description' => 'View My Proposal',
		'page callback' => 'drupal_get_form',
		'page arguments' => array(
			'arduino_projects_blog_my_proposal_view_form'
		),
		'access arguments' => array(
			'arduino projects view own proposal'
		),
		'type' => MENU_CALLBACK,
		'file' => 'my_proposals.inc'
	);
	$items['arduino-projects/manage-proposal'] = array(
		'title' => 'Manage Arduino Projects Proposals',
		'description' => 'Manage Arduino Projects Proposals',
		'page callback' => 'arduino_projects_blog_proposal_pending',
		'access callback' => 'user_access',
		'access arguments' => array(
			'arduino projects manage proposal'
		),
		'file' => 'manage_proposal.inc'
	);
	$items['arduino-projects/manage-proposal/pending'] = array(
		'title' => 'Pending Proposals',
		'description' => 'Pending arduino projects Proposals Queue',
		'page callback' => 'arduino_projects_blog_proposal_pending',
		'access callback' => 'user_access',
		'access arguments' => array(
			'arduino projects manage proposal'
		),
		'type' => MENU_DEFAULT_LOCAL_TASK,
		'weight' => 1,
		'file' => 'manage_proposal.inc'
	);
	$items['arduino-projects/manage-proposal/all'] = array(
		'title' => 'All Proposals',
		'description' => 'All Proposals',
		'page callback' => 'arduino_projects_blog_proposal_all',
		'access callback' => 'user_access',
		'access arguments' => array(
			'arduino projects manage proposal'
		),
		'type' => MENU_LOCAL_TASK,
		'weight' => 4,
		'file' => 'manage_proposal.inc'
	);
	$items['arduino-projects/manage-proposal/approve'] = array(
		'title' => 'Proposal Approval Form',
		'description' => 'Proposal Approval Form',
		'page callback' => 'drupal_get_form',
		'page arguments' => array(
			'arduino_projects_blog_proposal_approval_form'
		),
		'access arguments' => array(
			'arduino projects manage proposal'
		),
		'type' => MENU_CALLBACK,
		'file' => 'manage_proposal.inc'
	);
	$items['arduino-projects/manage-proposal/edit'] = array(
		'title' => 'Edit Proposal',
		'description' => 'Edit Proposal',
		'page callback' => 'drupal_get_form',
		'page arguments' => array(
			'arduino_projects_blog_proposal_edit_form'
		),
		'access arguments' => array(
			'arduino projects edit proposal'
		),
		'type' => MENU_CALLBACK,
		'file' => 'manage_proposal.inc'
	);
	$items['arduino-projects/manage-proposal/status'] = array(
		'title' => 'Proposal Status',
		'description' => 'Proposal Status',
		'page callback' => 'drupal_get_form',
		'page arguments' => array(
			'arduino_projects_blog_proposal_status_form'
		),
		'access arguments' => array(
			'arduino projects approve proposal'
		),
		'type' => MENU_CALLBACK,
		'file' => 'manage_proposal.inc'
	);
	$items['arduino-projects/abstract-approval/bulk'] = array(
		'title' => 'Bulk Manage',
		'description' => 'Bulk Mangage',
		'page callback' => 'drupal_get_form',
		'page arguments' => array(
			'arduino_projects_blog_abstract_bulk_approval_form'
		),
		'access arguments' => array(
			'arduino projects bulk manage abstract'
		),
		'type' => MENU_LOCAL_TASK,
		'weight' => 2,
		'file' => 'abstract_bulk_approval.inc'
	);
	/* CODE UPLOAD */
	$items['arduino-projects/abstract-code'] = array(
		'title' => 'Abstract and Arduino Projects Submission',
		'description' => 'Abstract Submission',
		'page callback' => 'arduino_projects_blog_abstract',
		'access callback' => 'user_access',
		'access arguments' => array(
			'arduino projects upload code'
		),
		'file' => 'upload_code.inc'
	);
	$items['arduino-projects/abstract-code/upload'] = array(
		'title' => 'Abstract and Arduino Projects Submission',
		'description' => 'Abstract Submission',
		'page callback' => 'drupal_get_form',
		'page arguments' => array(
			'arduino_projects_blog_upload_abstract_code_form'
		),
		'access arguments' => array(
			'arduino projects upload code'
		),
		'type' => MENU_LOCAL_TASK,
		'file' => 'upload_code.inc',
		'weight' => 2
	);
	/* CODE DOWNLOADS */
	$items['arduino-projects/download/reference-images'] = array(
		'title' => 'Download Reference Images',
		'description' => 'Download Reference Images',
		'page callback' => 'arduino_projects_blog_download_reference_images',
		'access arguments' => array(
			'arduino projects download reference images'
		),
		'type' => MENU_CALLBACK,
		'file' => 'download.inc'
	);
	$items['arduino-projects/download/abstract-file'] = array(
		'title' => 'Download abstract file',
		'description' => 'Download abstract file',
		'page callback' => 'arduino_projects_blog_project_files',
		'access arguments' => array(
			'arduino projects download code'
		),
		'type' => MENU_CALLBACK,
		'file' => 'download.inc'
	);
	$items['arduino-projects/download/file'] = array(
		'title' => 'Code Download',
		'description' => 'Code Download',
		'page callback' => 'arduino_projects_blog_download_solution_file',
		'access arguments' => array(
			'arduino projects download code'
		),
		'type' => MENU_CALLBACK,
		'file' => 'download.inc'
	);
	$items['arduino-projects/full-download/project'] = array(
		'title' => 'Code Download',
		'description' => 'Code Download',
		'page callback' => 'arduino_projects_blog_download_full_project',
		'access arguments' => array(
			'arduino projects download code'
		),
		'type' => MENU_CALLBACK,
		'file' => 'full_download.inc'
	);
	/* COMPLETED arduino projectsS */
	$items['arduino-projects/completed-pssp'] = array(
		'title' => 'Completed Arduino Projectss',
		'page callback' => 'arduino_projects_blog_completed_proposals_all',
		'access arguments' => array(
			'arduino projects download code'
		),
		'file' => 'pssp_details.inc'
	);
	/* LABS IN PROGRESS */
	$items['arduino-projects/pssp-progress'] = array(
		'title' => 'Arduino Projectss in Progress',
		'page callback' => 'arduino_projects_blog_progress_all',
		'access arguments' => array(
			'arduino projects download code'
		),
		'file' => 'pssp_details.inc'
	);
	/* DOWNLOAD FOR EVERYONE */
	$items['arduino-projects/arduino-projects-run'] = array(
		'title' => 'Download Codes',
		'page callback' => 'drupal_get_form',
		'page arguments' => array(
			'arduino_projects_blog_run_form'
		),
		'access arguments' => array(
			'arduino projects download code'
		),
		'type' => MENU_NORMAL_ITEM,
		'file' => 'run.inc'
	);
	/* ADMIN SETTINGS */
	$items['admin/settings/arduino-projects'] = array(
		'title' => 'Arduino Projects Settings',
		'description' => 'Arduino Projects Settings',
		'page callback' => 'drupal_get_form',
		'page arguments' => array(
			'arduino_projects_blog_settings_form'
		),
		'access arguments' => array(
			'administer arduino projects'
		),
		'type' => MENU_NORMAL_ITEM,
		'file' => 'settings.inc'
	);
	/* AJAX REQUEST */
	$items['arduino-projects/certificates'] = array(
		'title' => 'List of Arduino Projects Certificates',
		'description' => 'List of Arduino Projects Certificates',
		'page callback' => '_list_pssp_certificates',
		'access arguments' => array(
			'list Arduino Projects certificates'
		),
		'file' => 'pdf/list_pssp_certificate.inc'
	);
	$items['arduino-projects/certificates/generate-pdf'] = array(
		'title' => 'Download Certificate',
		'description' => 'Download Certificate',
		'page callback' => 'drupal_get_form',
		'page arguments' => array(
			'generate_pdf'
		),
		'type' => MENU_CALLBACK,
		'access arguments' => array(
			'generate pdf'
		),
		'file' => 'pdf/cert_new.inc'
	);
	$items['arduino-projects/certificates-custom'] = array(
		'title' => 'List of Arduino Projects Custom Certificates',
		'description' => 'List of Arduino Projects Custom Certificates',
		'page callback' => '_list_pssp_custom_certificates',
		'access arguments' => array(
			'list Arduino Projects custom certificates'
		),
		'file' => 'pdf/list_mentor_certificates.inc'
	);
	$items['arduino-projects/certificates-custom/pdf'] = array(
		'title' => 'Download Certificate',
		'description' => 'Download Certificate',
		'page callback' => 'drupal_get_form',
		'page arguments' => array(
			'generate_pdf'
		),
		'type' => MENU_CALLBACK,
		'access arguments' => array(
			'generate pdf'
		),
		'file' => 'pdf/mentor_cert_pdf.inc'
	);
	$items["arduino-projects/certificates/verify"] = array(
		"title" => "Certificate Verification",
		"page callback" => "verify_certificates",
		"access arguments" => array(
			"verify certificates"
		),
		'type' => MENU_CALLBACK,
		'file' => 'pdf/verify_certificates.inc'
	);
	return $items;
}
/**
 * Implementation of hook_perm().
 */
function arduino_projects_blog_permission()
{
	return array(
		'arduino projects create proposal' => array(
			'title' => t('arduino projects create proposal'),
			'restrict access' => TRUE
		),
		'arduino projects display own proposal' => array(
			'title' => t('arduino projects display own proposal'),
			'restrict access' => TRUE
		),
		'arduino projects manage proposal' => array(
			'title' => t('arduino projects manage proposal'),
			'restrict access' => TRUE
		),
		'arduino projects edit proposal' => array(
			'title' => t('arduino projects edit proposal'),
			'restrict access' => TRUE
		),
		'arduino projects edit own proposal' => array(
			'title' => t('arduino projects edit own proposal'),
			'restrict access' => TRUE
		),
		'arduino projects view own proposal' => array(
			'title' => t('arduino projects view own proposal'),
			'restrict access' => TRUE
		),
		'arduino projects approve proposal' => array(
			'title' => t('arduino projects approve proposal'),
			'restrict access' => TRUE
		),
		'arduino projects propose solution' => array(
			'title' => t('arduino projects propose solution'),
			'restrict access' => TRUE
		),
		'arduino projects approve abstract' => array(
			'title' => t('arduino projects approve code'),
			'restrict access' => TRUE
		),
		'arduino projects bulk manage abstract' => array(
			'title' => t('arduino projects bulk manage abstract'),
			'restrict access' => TRUE
		),
		'arduino projects bulk delete code' => array(
			'title' => t('arduino projects bulk delete code'),
			'restrict access' => TRUE
		),
		'arduino projects upload code' => array(
			'title' => t('arduino projects upload code'),
			'restrict access' => TRUE
		),
		'arduino projects download code' => array(
			'title' => t('arduino projects download code'),
			'restrict access' => TRUE
		),
		'arduino projects download reference images' => array(
			'title' => t('arduino projects download reference images'),
			'restrict access' =>TRUE
		),
		'administer arduino projects' => array(
			'title' => t('administer arduino projects'),
			'restrict access' => TRUE
		),
		'arduino projects generate abstract' => array(
			'title' => t('arduino projects generate abstract'),
			'restrict access' => TRUE
		),
		"list Arduino Projects certificates" => array(
			"title" => t("list Arduino Projects certificates"),
			"description" => t("Allows users to list Arduino Projects certificates.")
		),
		"list Arduino Projects custom certificates" => array(
			"title" => t("list Arduino Projects custom certificates"),
			"description" => t("Allows users to list Arduino Projects custom certificates.")
		),
		"generate pdf" => array(
			"title" => t("Generate pdf"),
			"description" => t("Allows users to Generate pdf.")
		)
	);
	// return array('arduino projects create proposal', 'arduino projects manage proposal', 'arduino projects edit proposal', 'arduino projects approve proposal', 'arduino projects propose solution', 'arduino projects approve code', 'arduino projects bulk manage abstract', 'arduino projects bulk delete code', 'arduino projects upload code', 'arduino projects download code', 'administer arduino projects', 'arduino projects generate lab');
}

/*************************** VALIDATION FUNCTIONS *****************************/
function arduino_projects_blog_check_valid_filename($file_name)
{
	if (!preg_match('/^[0-9a-zA-Z\.\_]+$/', $file_name))
		return FALSE;
	else if (substr_count($file_name, ".") > 1)
		return FALSE;
	else
		return TRUE;
}
function arduino_projects_blog_check_name($name = '')
{
	if (!preg_match('/^[0-9a-zA-Z\ ]+$/', $name))
		return FALSE;
	else
		return TRUE;
}
function arduino_projects_blog_check_code_number($number = '')
{
	if (!preg_match('/^[0-9]+$/', $number))
		return FALSE;
	else
		return TRUE;
}
/************************* USER VERIFICATION FUNCTIONS ************************/
function arduino_projects_blog_get_proposal()
{
	global $user;
	//$proposal_q = db_query("SELECT * FROM {arduino_projects_blog_proposal} WHERE solution_provider_uid = ".$user->uid." AND solution_status = 2 ORDER BY id DESC LIMIT 1");
	$query = db_select('arduino_projects_blog_proposal');
	$query->fields('arduino_projects_blog_proposal');
	$query->condition('uid', $user->uid);
	$query->orderBy('id', 'DESC');
	$query->range(0, 1);
	$proposal_q = $query->execute();
	$proposal_data = $proposal_q->fetchObject();
	if (!$proposal_data)
	{
		drupal_set_message("You do not have any approved arduino projects proposal. Please propose the Arduino Projects proposal", 'error');
		drupal_goto('');
	} //!$proposal_data
	switch ($proposal_data->approval_status)
	{
		case 0:
			drupal_set_message(t('Proposal is awaiting approval.'), 'status');
			return FALSE;
		case 1:
			return $proposal_data;
		case 2:
			drupal_set_message(t('Proposal has been dis-approved.'), 'error');
			return FALSE;
		case 3:
			drupal_set_message(t('Proposal has been marked as completed.'), 'status');
			return FALSE;
		default:
			drupal_set_message(t('Invalid proposal state. Please contact site administrator for further information.'), 'error');
			return FALSE;
	} //$proposal_data->approval_status
	return FALSE;
}
/*************************************************************************/
/***** Function To convert only first charater of string in uppercase ****/
/*************************************************************************/
function ucname($string)
  {
    $string = ucwords(strtolower($string));
    foreach (array(
        '-',
        '\''
    ) as $delimiter)
      {
        if (strpos($string, $delimiter) !== false)
          {
            $string = implode($delimiter, array_map('ucfirst', explode($delimiter, $string)));
          }
      }
    return $string;
  }
function arduino_projects_blog_ucname($string)
{
	$string = ucwords(strtolower($string));
	foreach (array(
		'-',
		'\''
	) as $delimiter)
	{
		if (strpos($string, $delimiter) !== false)
		{
			$string = implode($delimiter, array_map('ucfirst', explode($delimiter, $string)));
		} //strpos($string, $delimiter) !== false
	} //array( '-', '\'' ) as $delimiter
	return $string;
}
function _df_sentence_case($string)
{
	$string = ucwords(strtolower($string));
	foreach (array(
		'-',
		'\''
	) as $delimiter)
	{
		if (strpos($string, $delimiter) !== false)
		{
			$string = implode($delimiter, array_map('ucfirst', explode($delimiter, $string)));
		} //strpos($string, $delimiter) !== false
	} //array( '-', '\'' ) as $delimiter
	return $string;
}

function _df_list_of_states()
{
	$states = array(
		0 => '-Select-'
	);
	$query = db_select('list_states_of_india');
	$query->fields('list_states_of_india');
	//$query->orderBy('', '');
	$states_list = $query->execute();
	while ($states_list_data = $states_list->fetchObject())
	{
		$states[$states_list_data->state] = $states_list_data->state;
	} //$states_list_data = $states_list->fetchObject()
	return $states;
}
function _df_list_of_cities()
{
	$city = array(
		0 => '-Select-'
	);
	$query = db_select('list_cities_of_india');
	$query->fields('list_cities_of_india');
	$query->orderBy('city', 'ASC');
	$city_list = $query->execute();
	while ($city_list_data = $city_list->fetchObject())
	{
		$city[$city_list_data->city] = $city_list_data->city;
	} //$city_list_data = $city_list->fetchObject()
	return $city;
}
function _df_list_of_pincodes()
{
	$pincode = array(
		0 => '-Select-'
	);
	$query = db_select('list_of_all_india_pincode');
	$query->fields('list_of_all_india_pincode');
	$query->orderBy('pincode', 'ASC');
	$pincode_list = $query->execute();
	while ($pincode_list_data = $pincode_list->fetchObject())
	{
		$pincode[$pincode_list_data->pincode] = $pincode_list_data->pincode;
	} //$pincode_list_data = $pincode_list->fetchObject()
	return $pincode;
}
function _df_list_of_departments()
{
	$department = array();
	$query = db_select('list_of_departments');
	$query->fields('list_of_departments');
	$query->orderBy('id', 'DESC');
	$department_list = $query->execute();
	while ($department_list_data = $department_list->fetchObject())
	{
		$department[$department_list_data->department] = $department_list_data->department;
	} //$department_list_data = $department_list->fetchObject()
	return $department;
}
function _apb_dir_name($project, $proposar_name)
{

	$project_title = ucname($project);
	$proposar_name = ucname($proposar_name);
	$dir_name = $project_title . ' By ' . $proposar_name;
	$directory_name = str_replace("__", "_", str_replace(" ", "_", str_replace("/", " ", $dir_name)));
	return $directory_name;
}
function arduino_projects_blog_files_path()
{
	return $_SERVER['DOCUMENT_ROOT'] . base_path() . 'project_uploads/';
}
function DF_RenameDir($proposal_id, $dir_name)
{
	$proposal_id = $proposal_id;
	$dir_name = $dir_name;
	$query = db_query("SELECT directory_name,id FROM arduino_projects_blog_proposal WHERE id = :proposal_id", array(
		':proposal_id' => $proposal_id
	));
	$result = $query->fetchObject();
	if ($result != NULL)
	{
		$files = scandir(arduino_projects_blog_path());
		$files_id_dir = arduino_projects_blog_path() . $result->id;
		//var_dump($files);die;
		$file_dir = arduino_projects_blog_path() . $result->directory_name;
		if (is_dir($file_dir))
		{
			$new_directory_name = rename(arduino_projects_blog_path() . $result->directory_name, arduino_projects_blog_path() . $dir_name);
			return $new_directory_name;
		} //is_dir($file_dir)
		else if (is_dir($files_id_dir))
		{
			$new_directory_name = rename(arduino_projects_blog_path() . $result->id, arduino_projects_blog_path() . $dir_name);
			return $new_directory_name;
		} //is_dir($files_id_dir)
		else
		{
			drupal_set_message('Directory not available for rename.');
			return;
		}
	} //$result != NULL
	else
	{
		drupal_set_message('Project directory name not present in databse');
		return;
	}
	//var_dump($files);die;
	/* if ($files != NULL)
	{
	$new_directory_name = rename(arduino_projects_blog_path() . $result->directory_name, arduino_projects_blog_path() . $dir_name) or drupal_set_message("Unable to rename folder");
	}
	else
	{
	$new_directory_name = 'Can not rename the directory. Directory not present';
	}*/
	return;
}
function CreateReadmeFileOmPSSPProject($proposal_id)
{
	$result = db_query("
                        SELECT * from arduino_projects_blog_proposal WHERE id = :proposal_id", array(
		":proposal_id" => $proposal_id
	));
	$proposal_data = $result->fetchObject();
	$root_path = arduino_projects_blog_path();
	$readme_file = fopen($root_path . $proposal_data->directory_name . "/README.txt", "w") or die("Unable to open file!");
	$txt = "";
	$txt .= "About the Arduino Projects";
	$txt .= "\n" . "\n";
	$txt .= "Title Of The Arduino Projects Project: " . $proposal_data->project_title . "\n";
	$txt .= "Proposar Name: " . $proposal_data->name_title . " " . $proposal_data->contributor_name . "\n";
	$txt .= "University: " . $proposal_data->university . "\n";
	$txt .= "\n" . "\n";
	$txt .= "Arduino Projects Project By FOSSEE, IIT Bombay" . "\n";
	fwrite($readme_file, $txt);
	fclose($readme_file);
	return $txt;
}
function rrmdir_project($prop_id)
{
	$proposal_id = $prop_id;
	$result = db_query("
					SELECT * from arduino_projects_blog_proposal WHERE id = :proposal_id", array(
		":proposal_id" => $proposal_id
	));
	$proposal_data = $result->fetchObject();
	$root_path = arduino_projects_blog_path();
	$dir = $root_path . $proposal_data->directory_name;
	if ($proposal_data->id == $prop_id)
	{
		if (is_dir($dir))
		{
			$objects = scandir($dir);
			foreach ($objects as $object)
			{
				if ($object != "." && $object != "..")
				{
					if (filetype($dir . "/" . $object) == "dir")
					{
						rrmdir($dir . "/" . $object);
					} //filetype($dir . "/" . $object) == "dir"
					else
					{
						unlink($dir . "/" . $object);
					}
				} //$object != "." && $object != ".."
			} //$objects as $object
			reset($objects);
			rmdir($dir);
			$msg = drupal_set_message("Directory deleted successfully");
			return $msg;
		} //is_dir($dir)
		$msg = drupal_set_message("Directory not present");
		return $msg;
	} //$proposal_data->id == $prop_id
	else
	{
		$msg = drupal_set_message("Data not found");
		return $msg;
	}
}
function rrmdir($dir)
{
	if (is_dir($dir))
	{
		$objects = scandir($dir);
		foreach ($objects as $object)
		{
			if ($object != "." && $object != "..")
			{
				if (filetype($dir . "/" . $object) == "dir")
					rrmdir($dir . "/" . $object);
				else
					unlink($dir . "/" . $object);
			} //$object != "." && $object != ".."
		} //$objects as $object
		reset($objects);
		rmdir($dir);
	} //is_dir($dir)
}