mirror of
https://github.com/YunoHost-Apps/spip_ynh.git
synced 2024-09-03 20:25:59 +02:00
57 lines
No EOL
2 KiB
PHP
57 lines
No EOL
2 KiB
PHP
<?php
|
|
|
|
/***************************************************************************\
|
|
* SPIP, Systeme de publication pour l'internet *
|
|
* *
|
|
* Copyright (c) 2001-2014 *
|
|
* Arnaud Martin, Antoine Pitrou, Philippe Riviere, Emmanuel Saint-James *
|
|
* *
|
|
* Ce programme est un logiciel libre distribue sous licence GNU/GPL. *
|
|
* Pour plus de details voir le fichier COPYING.txt ou l'aide en ligne. *
|
|
\***************************************************************************/
|
|
|
|
|
|
if (!defined('_ECRIRE_INC_VERSION')) return;
|
|
if (!defined('_AUTO_SELECTION_RUBRIQUE'))
|
|
define('_AUTO_SELECTION_RUBRIQUE',false);
|
|
|
|
|
|
/**
|
|
* Preselectionner la rubrique lors de la creation
|
|
* desactive par defaut suite a remontee utilisateur mais activable par define
|
|
* ou surchargeable
|
|
*
|
|
* @param string $objet
|
|
* @param array $row
|
|
* @return string
|
|
*/
|
|
function inc_preselectionner_parent_nouvel_objet_dist($objet, $row){
|
|
if (!_AUTO_SELECTION_RUBRIQUE)
|
|
return '';
|
|
|
|
if (!isset($row['id_rubrique']))
|
|
return '';
|
|
|
|
$id_rubrique = '';
|
|
if ($GLOBALS['connect_id_rubrique']){
|
|
// si admin restreint : sa rubrique
|
|
$id_rubrique = $GLOBALS['connect_id_rubrique'][0];
|
|
}
|
|
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)){
|
|
$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']))
|
|
$id_rubrique = $row_rub['id_rubrique'];
|
|
}
|
|
}
|
|
return $id_rubrique;
|
|
|
|
} |