[SPIP][PLUGINS] v3.0-->v3.2
[lhc/web/www.git] / www / ecrire / inc / preselectionner_parent_nouvel_objet.php
index 8043b5a..ce2c4a6 100644 (file)
@@ -3,7 +3,7 @@
 /***************************************************************************\
  *  SPIP, Systeme de publication pour l'internet                           *
  *                                                                         *
- *  Copyright (c) 2001-2016                                                *
+ *  Copyright (c) 2001-2017                                                *
  *  Arnaud Martin, Antoine Pitrou, Philippe Riviere, Emmanuel Saint-James  *
  *                                                                         *
  *  Ce programme est un logiciel libre distribue sous licence GNU/GPL.     *
 \***************************************************************************/
 
 
-if (!defined('_ECRIRE_INC_VERSION')) return;
-if (!defined('_AUTO_SELECTION_RUBRIQUE'))
-       define('_AUTO_SELECTION_RUBRIQUE',false);
+if (!defined('_ECRIRE_INC_VERSION')) {
+       return;
+}
+if (!defined('_AUTO_SELECTION_RUBRIQUE')) {
+       define('_AUTO_SELECTION_RUBRIQUE', false);
+}
 
 
 /**
@@ -25,33 +28,36 @@ if (!defined('_AUTO_SELECTION_RUBRIQUE'))
  * @param array $row
  * @return string
  */
-function inc_preselectionner_parent_nouvel_objet_dist($objet, $row){
-       if (!_AUTO_SELECTION_RUBRIQUE)
+function inc_preselectionner_parent_nouvel_objet_dist($objet, $row) {
+       if (!_AUTO_SELECTION_RUBRIQUE) {
                return '';
+       }
 
-       if (!isset($row['id_rubrique']))
+       if (!isset($row['id_rubrique'])) {
                return '';
+       }
 
        $id_rubrique = '';
-       if ($GLOBALS['connect_id_rubrique']){
+       if ($GLOBALS['connect_id_rubrique']) {
                // si admin restreint : sa rubrique
                $id_rubrique = $GLOBALS['connect_id_rubrique'][0];
-       }
-       else {
+       } else {
                // sinon la derniere rubrique cree
                $row_rub = sql_fetsel("id_rubrique", "spip_rubriques", "", "", "id_rubrique DESC", "0,1");
                $id_rubrique = $row_rub['id_rubrique'];
        }
        // si le choix ne convient pas, on cherche dans un secteur
-       if (!autoriser('creer'.$objet.'dans','rubrique',$id_rubrique)){
+       if (!autoriser('creer' . $objet . 'dans', 'rubrique', $id_rubrique)) {
                $id_rubrique = '';
                // manque de chance, la rubrique n'est pas autorisee, on cherche un des secteurs autorises
                $res = sql_select("id_rubrique", "spip_rubriques", "id_parent=0");
-               while (!$id_rubrique AND $row_rub = sql_fetch($res)){
-                       if (autoriser('creer'.$objet.'dans','rubrique',$row_rub['id_rubrique']))
+               while (!$id_rubrique and $row_rub = sql_fetch($res)) {
+                       if (autoriser('creer' . $objet . 'dans', 'rubrique', $row_rub['id_rubrique'])) {
                                $id_rubrique = $row_rub['id_rubrique'];
+                       }
                }
        }
+
        return $id_rubrique;
 
-}
\ No newline at end of file
+}