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

Source for file class.publication.php

Documentation is available at class.publication.php

  1. <?php
  2. /**
  3.  * @package linea21.modules
  4.  * @subpackage publication
  5.  * @author linea21 <info@linea21.com>
  6.  * @version $id SVN
  7.  * @access public
  8.  * @license http://opensource.org/licenses/gpl-3.0.html
  9.  *  Publication Management
  10.  */
  11.  
  12. class publication {
  13.   /* @param
  14.    * */
  15.   var $TDB_PUBLI = T_PUBLI// nom de la table.
  16.   var $ID;
  17.   var $TITLE;
  18.   var $RESUME;
  19.   var $THEME;
  20.   var $SCALE;
  21.   var $LEVEL;
  22.   var $POSTED_BY;
  23.   var $PUBLISHED_DATE;
  24.   var $COMMENT;
  25.   var $DATE_CREA;
  26.   var $LAST_MODIFY;
  27.   var $STATUT;
  28.   protected $dispatcher = null;
  29.  
  30.   public function __construct()
  31.   {
  32.     $this->dispatcher = $GLOBALS['dispatcher'];
  33.   }
  34.  
  35.   public function __call($method$arguments)
  36.   {
  37.     $event $this->dispatcher->notifyUntil(new sfEvent($this'publication.extensible_function'array(
  38.       'method'    => $method,
  39.       'arguments' => $arguments
  40.     )));
  41.     if (!$event->isProcessed())
  42.     {
  43.       throw new Exception(sprintf('Call to undefined method %s::%s.'get_class($this)$method));
  44.     }
  45.  
  46.     return $event->getReturnValue();
  47.   }
  48.  
  49.   /**
  50.    * publication::CheckDataIntegrity()
  51.    * Vérification intégrité des données
  52.    *
  53.    * @access public
  54.    * @param array $table : contient les composants d'une publication
  55.    * @return boolean true
  56.    *  si verifié, sinon string 'message d'erreur'
  57.    */
  58.   function CheckDataIntegrity($table$sql_object)
  59.   {
  60.     if (strlen($table[0]3return _t('publication','no_title');
  61.     if (strlen($table[1]3return _t('publication','no_resume');
  62.     if ($table[2== -1return _t('publication','no_theme');
  63.     if ($table[3== -1return _t('publication','no_scale');
  64.     if (strlen(trim($table[5])) 2return _t('publication','no_author');
  65.     $result $this->_CheckUserValidity($table[5]$sql_object);
  66.     if (!is_numeric($result['user_id'])) return _t('publication','author_not_valid');
  67.     if ($result['publi_right'== 'U'return _t('publication','author_not_rights');
  68.     else return $result;
  69.   }
  70.  
  71.   /**
  72.    * publication::_CheckUserValidity()
  73.    * Vérification validité de l'utilisateur
  74.    *
  75.    * @access private
  76.    * @param string $login 
  77.    * @param object $sql_object 
  78.    * @return array contenant $user_id et droit si login associé au workshop
  79.    *  sinon renvoie false
  80.    */
  81.   function _CheckUserValidity($login$sql_object)
  82.   {
  83.     $user array('user_id' => '''publi_right' => '');
  84.  
  85.     $requete "SELECT user_id, rights_publication FROM " T_USER " LEFT OUTER JOIN " T_RIGHT " ON user_rights=rights_id WHERE user_login= '" $login "' AND user_validity='Y';";
  86.     $result $sql_object->DBSelect($requete);
  87.  
  88.     if ($result == 0return false;
  89.     if (count($result1exit();
  90.     else {
  91.       $user['user_id'$result[0]['user_id'];
  92.       $user['publi_right'$result[0]['rights_publication'];
  93.     }
  94.     return $user;
  95.   }
  96.  
  97.   /**
  98.    * publication::AddPublication()
  99.    * Ajout d'une nouvelle publication/dossier
  100.    *
  101.    * @access public
  102.    * @param array $table_publi contient les composants d'une publication
  103.    * @param object $sql_object 
  104.    * @return integer $last_id
  105.    */
  106.   function AddPublication($table_publi$sql_object)
  107.   {
  108.     $table_publi=$sql_object->DBescape($table_publi);
  109.  
  110.     if($table_publi[4== -1$table_publi[4]=0;
  111.  
  112.     $this->TITLE = strip_input(trim($table_publi[0])true);
  113.     $this->RESUME = strip_input(trim($table_publi[1])true);
  114.     $this->THEME = $table_publi[2];
  115.     $this->SCALE = $table_publi[3];
  116.     $this->LEVEL = $table_publi[4];
  117.     $this->POSTED_BY = $table_publi[5];
  118.     $this->COMMENT = strip_input(trim($table_publi[6]true));
  119.  
  120.     if ($table_publi[7!= ''{
  121.       $this->STATUT = strtoupper($table_publi[7]);
  122.     }
  123.     if ($this->STATUT == 'P'{
  124.       $this->PUBLISHED_DATE = "NOW()";
  125.     else {
  126.       $this->PUBLISHED_DATE = "'0001-01-01'";
  127.     }
  128.     $requete "INSERT INTO " $this->TDB_PUBLI . " (publi_title, publi_resume, publi_theme, publi_scale, publi_level, publi_posted_by, publi_published_date, publi_comment, publi_statut, publi_date_crea) VALUES('" $this->TITLE . "', '" $this->RESUME . "', " $this->THEME . ", " $this->SCALE . ", " $this->LEVEL . ", " $this->POSTED_BY . ", " $this->PUBLISHED_DATE . ", '" $this->COMMENT . "', '" $this->STATUT . "', NOW());";
  129.     $last_id $sql_object->DBInsert ($requete1);
  130.     return $last_id;
  131.   }
  132.  
  133.   /**
  134.    * publication::ModifyPublication()
  135.    * modification d'une publication
  136.    *
  137.    * @access public
  138.    * @param int $ID identifiant de la publication
  139.    * @param array $table_publi contient les composants d'une publication
  140.    * @param object $sql_object 
  141.    * @return bool $result
  142.    */
  143.   function ModifyPublication($ID$table_publi$sql_object)
  144.   {
  145.  
  146.     $table_publi=$sql_object->DBescape($table_publi);
  147.  
  148.     if($table_publi[4== -1$table_publi[4]=0;
  149.      
  150.     if (is_numeric($ID)) {
  151.       $this->ID = $ID;
  152.     else exit;
  153.     $this->TITLE = strip_input(trim($table_publi[0])true);
  154.     $this->RESUME = strip_input(trim($table_publi[1])true);
  155.     $this->THEME = $table_publi[2];
  156.     $this->SCALE = $table_publi[3];
  157.     $this->LEVEL = $table_publi[4];
  158.     $this->POSTED_BY = $table_publi[5];
  159.     $this->COMMENT = strip_input(trim($table_publi[6]true));
  160.     $this->STATUT = $table_publi[7];
  161.  
  162.     $mask $this->_HavePublishedDate($table_publi[8]);
  163.  
  164.     $requete "UPDATE  " $this->TDB_PUBLI . " set publi_title='" $this->TITLE . "', publi_resume='" $this->RESUME . "' , publi_theme='" $this->THEME . "', publi_scale='" $this->SCALE . "', publi_level='" $this->LEVEL . "', publi_comment='" $this->COMMENT . "', publi_posted_by='" $this->POSTED_BY . "', publi_last_modify=NOW(), publi_statut='" $this->STATUT . "'" $mask " WHERE publi_id='" $this->ID . "';";
  165.     $result $sql_object->DBQuery($requete);
  166.     return $result;
  167.   }
  168.   
  169.   
  170.   /**
  171.    * publication::changeRanges()
  172.    * changes Workshop range
  173.    *
  174.    * @access public
  175.    * @param array : Id (key) and ranges (value)
  176.    * @param object $sql_object 
  177.    * @return bool $result
  178.    */
  179.  
  180.   function changeRanges($array$sql_object)
  181.   {
  182.  
  183.     foreach ($array as $key => $value{
  184.       $query "UPDATE " $this->TDB_PUBLI . " set publi_range='".$value."' WHERE publi_id='" $key "';";
  185.       $result $sql_object->DBQuery($query);
  186.     }
  187.  
  188.     return $result;
  189.   }
  190.  
  191.   /**
  192.    * publication::_HavePublishedDate()
  193.    * Détermine la date de publication a inserer dans la bdd
  194.    *
  195.    * @access private
  196.    * @param string $current_status : statut actuel de la publication
  197.    * @return string $sql_mask
  198.    */
  199.   function _HavePublishedDate($current_status)
  200.   {
  201.     switch ($this->STATUT{
  202.       case 'P':
  203.         if ($current_status == 'D'$sql_mask ", publi_published_date= NOW()";
  204.         else $sql_mask '';
  205.         break;
  206.       case 'D':
  207.         $sql_mask ", publi_published_date= '0001-01-01'";
  208.         break;
  209.       default:
  210.         $sql_mask '';
  211.     }
  212.     return $sql_mask;
  213.   }
  214.  
  215.   /**
  216.    * publication::DeletePublication()
  217.    * suppression d'une publication
  218.    *
  219.    * @access public
  220.    * @param int $ID identifiant de la publication a supprimer
  221.    * @param object $sql_object 
  222.    * @return bool $result
  223.    */
  224.   function DeletePublication($ID$sql_object)
  225.   {
  226.     $this->ID = $ID;
  227.     $requete "UPDATE  " $this->TDB_PUBLI . " set publi_statut='E', publi_last_modify=NOW() WHERE publi_id=" $this->ID . ";";
  228.     $result $sql_object->DBQuery($requete);
  229.  
  230.     return $result;
  231.   }
  232. }
  233.  
  234. ?>

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