diff --git a/pages/run_query.php b/pages/run_query.php index 76cd4bad8..4539213be 100644 --- a/pages/run_query.php +++ b/pages/run_query.php @@ -10,49 +10,60 @@ login_web_page::DoLogin(); // Check user rights and prompt if needed function ShowExamples($oP, $sExpression) { + $bUsingExample = false; + $aExamples = array( - "Applications" => "SELECT bizApplication", - "Changes planned on new year's day" => "SELECT bizChangeTicket AS ch WHERE ch.start_date >= '2009-12-31' AND ch.end_date <= '2010-01-01'", - "Person having an 'A' in their name" => "SELECT bizPerson AS B WHERE B.name LIKE '%A%'", - "NW interfaces of equipment in production for customer 'Demo'" => "SELECT bizInterface AS if JOIN bizDevice AS dev ON if.device_id = dev.id WHERE if.status = 'production' AND dev.status = 'production' AND dev.org_name = 'Demo' AND if.physical_type = 'ethernet'", - "My tickets" => "SELECT bizIncidentTicket AS i WHERE i.agent_id = :current_contact_id", - "People being owner of an active ticket" => "SELECT bizPerson AS p JOIN bizIncidentTicket AS i ON i.agent_id = p.id WHERE i.ticket_status != 'Closed'", - "Contracts terminating in the next thirty days" => "SELECT bizContract AS c WHERE c.end_prod > NOW() AND c.end_prod < DATE_ADD(NOW(), INTERVAL 30 DAY)", - "Orphan tickets (opened one hour ago, still not assigned)" => "SELECT bizIncidentTicket AS i WHERE i.start_date < DATE_SUB(NOW(), INTERVAL 60 MINUTE) AND i.ticket_status = 'New'", - "Long lasting incidents (duration > 8 hours)" => "SELECT bizIncidentTicket AS i WHERE i.end_date > DATE_ADD(i.start_date, INTERVAL 8 HOUR)", + 'Pedagogic examples' => array( + "Applications" => "SELECT bizApplication", + "Person having an 'A' in their name" => "SELECT bizPerson AS B WHERE B.name LIKE '%A%'", + "Changes planned on new year's day" => "SELECT bizChangeTicket AS ch WHERE ch.start_date >= '2009-12-31' AND ch.end_date <= '2010-01-01'", + ), + 'Usefull examples' => array( + "Applications" => "SELECT bizApplication", + "NW interfaces of equipment in production for customer 'Demo'" => "SELECT bizInterface AS if JOIN bizDevice AS dev ON if.device_id = dev.id WHERE if.status = 'production' AND dev.status = 'production' AND dev.org_name = 'Demo' AND if.physical_type = 'ethernet'", + "My tickets" => "SELECT bizIncidentTicket AS i WHERE i.agent_id = :current_contact_id", + "People being owner of an active ticket" => "SELECT bizPerson AS p JOIN bizIncidentTicket AS i ON i.agent_id = p.id WHERE i.ticket_status != 'Closed'", + "Contracts terminating in the next thirty days" => "SELECT bizContract AS c WHERE c.end_prod > NOW() AND c.end_prod < DATE_ADD(NOW(), INTERVAL 30 DAY)", + "Orphan tickets (opened one hour ago, still not assigned)" => "SELECT bizIncidentTicket AS i WHERE i.start_date < DATE_SUB(NOW(), INTERVAL 60 MINUTE) AND i.ticket_status = 'New'", + "Long lasting incidents (duration > 8 hours)" => "SELECT bizIncidentTicket AS i WHERE i.end_date > DATE_ADD(i.start_date, INTERVAL 8 HOUR)", + ), ); $aDisplayData = array(); - foreach($aExamples as $sDescription => $sOql) + foreach($aExamples as $sTopic => $aQueries) { - $sHighlight = ''; - $sDisable = ''; - if ($sOql == $sExpression) + foreach($aQueries as $sDescription => $sOql) { - // this one is currently being tested, highlight it - $sHighlight = "background-color:yellow;"; - $sDisable = 'disabled'; + $sHighlight = ''; + $sDisable = ''; + if ($sOql == $sExpression) + { + // this one is currently being tested, highlight it + $sHighlight = "background-color:yellow;"; + $sDisable = 'disabled'; + // and remember we are testing a query of the list + $bUsingExample = true; + } + //$aDisplayData[$sTopic][] = array( + $aDisplayData['Query examples'][] = array( + 'desc' => "