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

Source for file class.workshop_report.php

Documentation is available at class.workshop_report.php

  1. <?php
  2. /**
  3.  * @package linea21.modules
  4.  * @subpackage workshoprep
  5.  * @see workshop
  6.  * @author linea21 <info@linea21.com>
  7.  * @version $id SVN
  8.  * @access public
  9.  * @license http://opensource.org/licenses/gpl-3.0.html
  10.  *  Work group report Management
  11.  */
  12. class workshop_report {
  13.   /* @param
  14.    * */
  15.   var $TDB_WORKREP = T_WORK_REP// nom de la table.
  16.   var $ID;
  17.   var $TITLE;
  18.   var $RESUME;
  19.   var $WORKSHOP_ID;
  20.   var $PUBLISHED_DATE;
  21.   var $COMMENT;
  22.   var $DATE_CREA;
  23.   var $LAST_MODIFY;
  24.   var $STATUT;
  25.   protected $dispatcher = null;
  26.  
  27.   public function __construct()
  28.   {
  29.     $this->dispatcher = $GLOBALS['dispatcher'];
  30.   }
  31.  
  32.   public function __call($method$arguments)
  33.   {
  34.     $event $this->dispatcher->notifyUntil(new sfEvent($this'workshop_report.extensible_function'array(
  35.       'method'    => $method,
  36.       'arguments' => $arguments
  37.     )));
  38.     if (!$event->isProcessed())
  39.     {
  40.       throw new Exception(sprintf('Call to undefined method %s::%s.'get_class($this)$method));
  41.     }
  42.  
  43.     return $event->getReturnValue();
  44.   }
  45.  
  46.   /**
  47.    * workshop_report::CheckDataIntegrity()
  48.    * Vérification intégrité des données
  49.    *
  50.    * @access public
  51.    * @param array $table : contient les composants d'un compte rendu
  52.    * @return boolean true
  53.    *  si verifié, sinon string 'message d'erreur'
  54.    */
  55.   function CheckDataIntegrity($table$sql_object)
  56.   {
  57.     if (strlen($table[0]3return _t('workshoprep','no_title');
  58.     if (strlen($table[1]3return _t('workshoprep','no_resume');
  59.  
  60.     return true;
  61.   }
  62.  
  63.  
  64.   /**
  65.    * workshop_report::AddWorkshopReport()
  66.    * Ajout d'un un rapport de groupe de travail
  67.    *
  68.    * @access public
  69.    * @param array $table_workrep contient les composants du rapport
  70.    * @param object $sql_object 
  71.    * @return integer $last_id
  72.    */
  73.   function AddWorkshopReport($table_workrep$sql_object)
  74.   {
  75.     $table_workrep=$sql_object->DBescape($table_workrep);
  76.  
  77.     $this->TITLE = strip_input(trim($table_workrep[0]));
  78.     $this->RESUME = strip_input(trim($table_workrep[1])true);
  79.     $this->COMMENT = strip_input(trim($table_workrep[2])true);
  80.     $this->STATUT = strtoupper($table_workrep[3]);
  81.     $this->WORKSHOP_ID = $table_workrep[4];
  82.     $this->PUBLISHED_DATE = "NOW()";
  83.  
  84.     if ($this->STATUT == 'P'{
  85.       $this->PUBLISHED_DATE = "NOW()";
  86.     else {
  87.       $this->PUBLISHED_DATE = "'0001-01-01'";
  88.     }
  89.  
  90.     $requete "INSERT INTO " $this->TDB_WORKREP . " (workrep_title, workrep_resume, workrep_workshop_id, workrep_published_date, workrep_comment, workrep_statut, workrep_date_crea) VALUES('" $this->TITLE . "', '" $this->RESUME . "', " $this->WORKSHOP_ID . ", " $this->PUBLISHED_DATE . ", '" $this->COMMENT . "', '" $this->STATUT . "', NOW());";
  91.     $last_id $sql_object->DBInsert ($requete1);
  92.     return $last_id;
  93.   }
  94.  
  95.  
  96.   /**
  97.    * workshop_report::ModifyWorkshopReport()
  98.    * modification d'un rapport de groupe de travail
  99.    *
  100.    * @access public
  101.    * @param int $ID identifiant du rapport de workshop
  102.    * @param array $table_workrep contient les composants du rapport
  103.    * @param object $sql_object 
  104.    * @return bool $result
  105.    */
  106.   function ModifyWorkshopReport($ID$table_workrep$sql_object)
  107.   {
  108.     $table_workrep=$sql_object->DBescape($table_workrep);
  109.  
  110.     $this->ID = $ID;
  111.     $this->TITLE = strip_input(trim($table_workrep[0]));
  112.     $this->RESUME = strip_input(trim($table_workrep[1])true);
  113.     $this->COMMENT = strip_input(trim($table_workrep[2])true);
  114.     $this->STATUT = $table_workrep[3];
  115.  
  116.     $mask $this->_HavePublishedDate($table_workrep[4]);
  117.  
  118.     $requete "UPDATE  " $this->TDB_WORKREP . " SET workrep_title='" $this->TITLE . "', workrep_resume='" $this->RESUME . "', workrep_comment='" $this->COMMENT . "', workrep_statut='" $this->STATUT . "', workrep_last_modify=NOW() " $mask " WHERE workrep_id='" $this->ID . "';";
  119.     $result $sql_object->DBQuery($requete);
  120.     return $result;
  121.   }
  122.  
  123.  
  124.   /**
  125.    * workshop_report::_HavePublishedDate()
  126.    * Détermine la date de publication a inserer dans la bdd
  127.    *
  128.    * @access private
  129.    * @param string $current_status : statut actuel de la publication
  130.    * @return string $sql_mask
  131.    */
  132.   function _HavePublishedDate($current_status)
  133.   {
  134.     switch ($this->STATUT{
  135.       case 'P':
  136.         if ($current_status == 'D'$sql_mask ", workrep_published_date= NOW()";
  137.         else $sql_mask '';
  138.         break;
  139.       case 'D':
  140.         $sql_mask ", workrep_published_date= '0001-01-01'";
  141.         break;
  142.       default:
  143.         $sql_mask '';
  144.     }
  145.     return $sql_mask;
  146.   }
  147.  
  148.  
  149.   /**
  150.    * workshop_report::DeleteWorkshopReport()
  151.    * suppression d'un rapport de groupe de travail
  152.    *
  153.    * @access public
  154.    * @param int $ID id du rapport de groupe de travail
  155.    * @param object $sql_object 
  156.    * @return bool $result
  157.    */
  158.   function DeleteWorkshopReport($ID$sql_object)
  159.   {
  160.     $this->ID = $ID;
  161.     $requete "UPDATE  " $this->TDB_WORKREP . " set workrep_statut='E', workrep_last_modify=NOW() WHERE workrep_id='" $this->ID . "';";
  162.     $result $sql_object->DBQuery($requete);
  163.  
  164.     return $result;
  165.   }
  166.  
  167. }
  168.  
  169. ?>

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