Source for file class.news.php
Documentation is available at class.news.php
* @package linea21.modules
* @author linea21 <info@linea21.com>
* @license http://opensource.org/licenses/gpl-3.0.html
var $NB_TEMPLATE = 3; // nombre de templates associés a la classe
var $URI_INPUT = "news/input/"; // dossier racine de stockage des photos
var $URI_OUTPUT = "news/output/"; // dossier racine de diffusion des archives
var $UPLOAD_MAX_MO = UPLOAD_MAX_MO; // taille maximale d'upload des photos en octets
* @param int $m chiffre des mois
* @param int $d chiffre des jours
* @param int $y chiffre des années
* @return string $format_date
function _getDate($m = 0, $d = 0, $y = 0)
$format_date = strftime('%Y-%m-%d %H:%M:%S', $format_date);
* news::GetTemplateName()
* Obtention de la dénomination du template
if ($num == 1) $return = $GLOBALS['lang']['news']['template_1'];
if ($num == 2) $return = $GLOBALS['lang']['news']['template_2'];
if ($num == 3) $return = $GLOBALS['lang']['news']['template_3'];
if ($num == 4) $return = $GLOBALS['lang']['news']['template_4'];
* news::CheckDataIntegrity()
* Vérification intégrité des données
* @param array $table : contient les composants Nécessaires d'une news
* si verifié, sinon string 'message d'erreur'
if (strlen($table[0]) < 3) return $GLOBALS['lang']['news']['no_title'];
if (strlen($table[1]) < 3) return $GLOBALS['lang']['news']['no_header'];
if (strlen($table[2]) < 3) return $GLOBALS['lang']['news']['no_body'];
if ($table[3] <= 0 || !is_numeric($table[3])) return $GLOBALS['lang']['news']['no_theme'];
if ($table[4] <= 0 || !is_numeric($table[4])) return $GLOBALS['lang']['news']['no_scale'];
if ($table[5] <= 0 || !is_numeric($table[5])) return $GLOBALS['lang']['news']['no_level'];
if ($table[6] <= 0 || !is_numeric($table[6])) return $GLOBALS['lang']['news']['no_template'];
* @param array $table_news : contient les composants d'une news
* @param object $sql_object
* @return integer $last_id
function AddNews($table_news, $sql_object)
$table_news= $sql_object->DBescape($table_news);
if ($table_news[0] != '') {
if ($table_news[1] != '') {
if ($table_news[2] != '') {
$this->THEME = $table_news[3];
$this->SCALE = $table_news[4];
$this->LEVEL = $table_news[5];
if ($table_news[7] != '') {
$this->RANGE = $table_news[8];
if ($table_news[11] != '') {
if ($table_news[12] != '') {
if ($table_news[10] != '') {
$requete = "INSERT INTO " . $this->TDB_NEWS . " (news_title, news_header, news_body, news_theme, news_scale, " . "news_level, news_template, news_photo_uri, news_range, news_posted_by, news_published_date, " . "news_perempt_date, news_is_national, news_statut, news_date_crea) " . "VALUES('" . $this->TITLE . "', '" . $this->HEADER . "', '" . $this->BODY . "', " . $this->THEME . ", " . $this->SCALE . ", " . $this->LEVEL . ", " . $this->TEMPLATE . ", '" . $this->PHOTO_URI . "', " . $this->RANGE . ", " . $this->POSTED_BY . ", '" . $this->PUBLISHED_DATE . "' , '" . $this->PEREMPT_DATE . "', '" . $this->IS_NATIONAL . "', '" . $this->STATUT . "', now());";
$last_id = $sql_object->DBInsert ($requete, 1);
* @param int $ID : identifiant de la news
* @param object $sql_object
$requete = "UPDATE " . $this->TDB_NEWS . " set news_statut='E', news_last_modify=NOW() WHERE news_id='" . $this->ID . "';";
$result = $sql_object->DBQuery($requete);
* modification d'une news
* @param integer $ID : identifiant de la news
* @param object $sql_object
* @param array $table_news : contient les composants d'une news
* @return boolean $result
function ModifyNews($ID, $table_news, $sql_object)
$table_news= $sql_object->DBescape($table_news);
if ($table_news[0] != '') {
if ($table_news[1] != '') {
if ($table_news[2] != '') {
$this->THEME = $table_news[3];
$this->SCALE = $table_news[4];
$this->LEVEL = $table_news[5];
if ($table_news[7] != '') {
if ($table_news[8] != '') {
$this->STATUT = $table_news[8];
$mask = $this->_HavePublishedDate($table_news[9]);
$requete = "UPDATE " . $this->TDB_NEWS . " set news_title='" . $this->TITLE . "', news_header='" . $this->HEADER . "', news_body='" . $this->BODY . "' , news_theme='" . $this->THEME . "', news_scale='" . $this->SCALE . "', news_level='" . $this->LEVEL . "', news_template='" . $this->TEMPLATE . "', news_photo_uri='" . $this->PHOTO_URI . "', news_statut='" . $this->STATUT . "', news_last_modify=NOW() " . $mask . " WHERE news_id='" . $this->ID . "';";
$result = $sql_object->DBQuery($requete);
* news::_HavePublishedDate()
* Détermine la date de publication a inserer dans la bdd
* @param string $current_status : statut actuel de l'actualité
* @return string $sql_mask
function _HavePublishedDate($current_status)
if ($current_status == 'D') $sql_mask = ", news_published_date= NOW()";
$sql_mask = ", news_published_date= '0001-01-01'";
|