summaryrefslogtreecommitdiff
path: root/pdf/list_all_form_pdf.inc
blob: e05924fb5591bc7452c3817bcc368da4d1160859 (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
<?php
//Used to generate forms dynamiclay
function _list_all_copyright_forms()
{
	global $user;
	$query_id = db_query("SELECT id FROM textbook_companion_proposal WHERE proposal_status=3 AND uid= :uid", array(
		':uid' => $user->uid
	));
	$exist_id = $query_id->fetchObject();
	if ($exist_id->id)
	{
		if ($exist_id->id < 3)
		{
			drupal_set_message('<strong>You need to propose a <a href="http://dwsim.fossee.in/textbook-companion/proposal">Book Proposal</a></strong> or if you have already proposed then your book is under reviewing process', 'status');
			return '';
		} //$exist_id->id < 3
		else
		{
			$search_rows = array();
			global $output;
			$output = '';
			$query3 = db_query("SELECT prop.id,pref.isbn,pref.book,pref.author FROM textbook_companion_proposal as prop,textbook_companion_preference as pref WHERE prop.proposal_status = 3 AND pref.approval_status =1 AND pref.proposal_id = prop.id AND prop.uid = :uid", array(
				':uid' => $user->uid
			));
			while ($search_data3 = $query3->fetchObject())
			{
				if ($search_data3->id)
				{
					$search_rows[] = array(
						$search_data3->isbn,
						$search_data3->book,
						$search_data3->author,
						l('Download Copyright Form', 'Summer_Internship_Forms/copyright-form/generate_pdf/' . $search_data3->id),
						l('Download Undertaking Form', 'Summer_Internship_Forms/undertaking-form/generate_pdf/' . $search_data3->id)
					);
				} //$search_data3->id
			} //$search_data3 = $query3->fetchObject()
			if ($search_rows)
			{
				$search_header = array(
					'ISBN',
					'Book Name',
					'Author',
					'Download Copyright Form',
					'Download Undertaking Form'
				);
				$output = theme('table', array(
					'header' => $search_header,
					'rows' => $search_rows
				));
				return $output;
			} //$search_rows
			else
			{
				echo ("Error");
				return '';
			}
		}
	} //$exist_id->id
	else
	{
		drupal_set_message('<strong>You need to propose a book <a href="http://dwsim.fossee.in/textbook-companion/proposal">Book Proposal</a></strong> or if you have already proposed then your book is under reviewing process', 'status');
		return '';
	}
}