summaryrefslogtreecommitdiff
path: root/pdf/list_mentor_certificates.inc
diff options
context:
space:
mode:
authorSashi202019-02-27 13:20:08 +0530
committerSashi202019-02-27 13:20:08 +0530
commitbafb3b9680925abcc0a0d997cde37b7cb5c62b26 (patch)
tree52d146f7aa29deca45598519fde33588b3af1bd8 /pdf/list_mentor_certificates.inc
parenta9d20d02f3cb94dcaa662c8fa4ecd2cc5183bf41 (diff)
downloadcfd_case_study-bafb3b9680925abcc0a0d997cde37b7cb5c62b26.tar.gz
cfd_case_study-bafb3b9680925abcc0a0d997cde37b7cb5c62b26.tar.bz2
cfd_case_study-bafb3b9680925abcc0a0d997cde37b7cb5c62b26.zip
Made certificates available for case study project
Diffstat (limited to 'pdf/list_mentor_certificates.inc')
-rwxr-xr-xpdf/list_mentor_certificates.inc54
1 files changed, 54 insertions, 0 deletions
diff --git a/pdf/list_mentor_certificates.inc b/pdf/list_mentor_certificates.inc
new file mode 100755
index 0000000..9a81b1e
--- /dev/null
+++ b/pdf/list_mentor_certificates.inc
@@ -0,0 +1,54 @@
+<?php
+function _list_circuit_simulation_custom_certificates()
+{
+ global $user;
+ $query_id = db_query("SELECT id FROM esim_circuit_simulation_proposal WHERE approval_status=3");
+ $exist_id = $query_id->fetchObject();
+ if ($exist_id){
+ if ($exist_id->id) {
+ if ($exist_id->id < 3) {
+ drupal_set_message('<strong>There are no proposals with mentors</strong>', 'status');
+ return '';
+ } //$exist_id->id < 3
+ else {
+ $search_rows = array();
+ global $output;
+ $output = '';
+ $query3 = db_query("SELECT id,project_guide_name,project_title FROM esim_circuit_simulation_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('<strong>There are no proposals with mentors</strong>', 'status');
+ $page_content = "<span style='color:red;'> No certificate available </span>";
+ return $page_content;
+ }
+}