linea21-core
[ class tree: linea21-core ] [ index: linea21-core ] [ all elements ]

Source for file mysql.inc.php

Documentation is available at mysql.inc.php

  1. <?php
  2. /**
  3.  * @package linea21.core
  4.  * @subpackage home
  5.  * @author linea21 <info@linea21.com>
  6.  * @version $id SVN
  7.  * @access public
  8.  * @license http://opensource.org/licenses/gpl-3.0.html
  9.  *  'Home' module is used into the back-office
  10.  */
  11.  
  12. $req_yp "SELECT yellowp_name, yellowp_id FROM " T_YELLOWPAGES " WHERE yellowp_statut='D';";
  13.  
  14. $req_sdi =     "SELECT I.sdii_name, sdiv_id, sdii_id, I.sdii_frequency, MAX( sdiv_date_published ) AS datep, COUNT( sdiv_date_published ) , S.scale_denomination,  S.scale_id
  15.             FROM " T_SDI_VALUE " AS V
  16.             LEFT OUTER JOIN " T_SDI_INFO " AS I ON V.sdiv_sdi_info = I.sdii_id
  17.             LEFT OUTER JOIN " T_SCALE " AS S ON V.sdiv_scale = S.scale_id
  18.             WHERE sdiv_statut <> 'E' AND sdii_statut <> 'E' AND I.sdii_frequency<>0 AND S.scale_statut <> 'E'
  19.             GROUP BY I.sdii_name, S.scale_denomination
  20.             HAVING DATE_ADD( MAX( sdiv_date_published ) , INTERVAL I.sdii_frequency DAY ) < NOW( )
  21.             ORDER BY S.scale_id ";
  22.  
  23. $req_news "SELECT N.news_title, news_id FROM " T_NEWS " AS  N WHERE news_statut='P' ORDER BY news_published_date DESC LIMIT 0,3;";
  24.  
  25. $req_publi "SELECT publi_title, publi_resume, publi_id FROM " T_PUBLI " WHERE publi_statut='P' ORDER BY publi_published_date DESC LIMIT 0,1;";
  26.  
  27. $req_rep "SELECT  workrep_title , workrep_resume,   workrep_id FROM " T_WORK_REP " AS  N WHERE workrep_statut='P' ORDER BY workrep_published_date DESC LIMIT 0,1;";
  28.  
  29. function SQL_getUser($date)
  30. {
  31.   $req_user "SELECT user_login, user_id , user_date_crea FROM " T_USER " WHERE user_date_crea > '" $date "' AND user_validity='Y'";
  32.   return $req_user;
  33. }
  34.  
  35. function SQL_getProjects()
  36. {
  37.   $q =  "SELECT project_name, project_id, DATE_FORMAT(project_estimated_date, '".
  38.   toStringSqlDate()."') AS project_estimated_date_display FROM "  T_PROJECT .
  39.           " WHERE project_statut='P' AND project_estimated_date <> '0001-01-01'".
  40.           " ORDER BY project_estimated_date ASC LIMIT 0,3;";
  41.   return $q;
  42. }
  43.  
  44. ?>

Documentation generated on Thu, 03 May 2012 15:06:48 +0200 by phpDocumentor 1.4.1