From d5760603472a1a4f07acdda1ef44f8115a8bc269 Mon Sep 17 00:00:00 2001
From: Saketh1499
Date: Tue, 27 Jul 2021 10:13:41 +0530
Subject: Certificate generation
---
pdf/list_mentor_certificates.inc | 54 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+)
create mode 100755 pdf/list_mentor_certificates.inc
(limited to 'pdf/list_mentor_certificates.inc')
diff --git a/pdf/list_mentor_certificates.inc b/pdf/list_mentor_certificates.inc
new file mode 100755
index 0000000..1a818b3
--- /dev/null
+++ b/pdf/list_mentor_certificates.inc
@@ -0,0 +1,54 @@
+fetchObject();
+ if ($exist_id){
+ if ($exist_id->id) {
+ if ($exist_id->id < 3) {
+ drupal_set_message('There are no proposals with mentors', 'status');
+ return '';
+ } //$exist_id->id < 3
+ else {
+ $search_rows = array();
+ global $output;
+ $output = '';
+ $query3 = db_query("SELECT id,project_guide_name,project_title FROM lab_migration_proposal WHERE project_guide_name != '' AND approval_status=3");
+ $i = 1;
+ while ($search_data3 = $query3->fetchObject()) {
+ $search_rows[] = array(
+ $i,
+ $search_data3->project_title,
+ $search_data3->project_guide_name,
+ l('Download Certificate', 'circuit-simulation-project/certificates-custom/pdf/' . $search_data3->id)
+ );
+ $i++;
+ //$search_data3->id
+ } //$search_data3 = $query3->fetchObject()
+ if ($search_rows) {
+ $search_header = array(
+ 'No',
+ 'Project Title',
+ 'Project Guide Name',
+ 'Download Certificates'
+ );
+ $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('There are no proposals with mentors', 'status');
+ $page_content = " No certificate available ";
+ return $page_content;
+ }
+}
--
cgit