From 63998fc60a076433c5f1ff94fce8b6cb110393a6 Mon Sep 17 00:00:00 2001
From: akshay
Date: Fri, 13 Dec 2024 12:13:31 +0530
Subject: table order by year in desc order
---
lab_details.inc | 37 +++++++++++++++++++++++++++++++++++--
1 file changed, 35 insertions(+), 2 deletions(-)
diff --git a/lab_details.inc b/lab_details.inc
index f912dde..aa83af8 100755
--- a/lab_details.inc
+++ b/lab_details.inc
@@ -27,9 +27,10 @@
$query->fields('lab_migration_proposal');
$query->condition('approval_status', 1);
$query->condition('solution_status', 2);
+ $query->orderBy('approval_date','DESC');
$result = $query->execute();
//$result = db_query($query);
- $page_content .= "
";
+ /* $page_content .= "";
while($row = $result->fetchObject()) {
$page_content .= "- ";
$page_content .= $row->university . " ({$row->lab_title})";
@@ -37,5 +38,37 @@
}
$page_content .= "
";
return $page_content;
- }
+ }*/
+ if ($result->rowCount() == 0)
+ {
+ $page_content .= "We are in the process of updating the lab migration data.";
+ }
+ else
+ {
+ $preference_rows = array();
+ $i = $result->rowCount();
+ while ($row = $result->fetchObject())
+ {
+ $approval_date = date("Y", $row->approval_date);
+ $preference_rows[] = array(
+ $i,
+ $row->university,
+ $row->lab_title,
+ $approval_date
+ );
+ $i--;
+ }
+ $preference_header = array(
+ 'No',
+ 'Institute',
+ 'Lab',
+ 'Year'
+ );
+ $page_content .= theme('table', array(
+ 'header' => $preference_header,
+ 'rows' => $preference_rows
+ ));
+ }
+ return $page_content;
+ }
?>
--
cgit