Changeset 52816 in spip-zone
- Timestamp:
- Oct 7, 2011, 9:37:05 AM (9 years ago)
- Location:
- _plugins_/compositions
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/compositions/base/compositions.php
r45741 r52816 6 6 * 7 7 */ 8 9 if (!defined("_ECRIRE_INC_VERSION")) return; 8 10 9 11 /** -
_plugins_/compositions/compositions_fonctions.php
r51809 r52816 6 6 * 7 7 */ 8 9 if (!defined("_ECRIRE_INC_VERSION")) return; 8 10 9 11 define('_COMPOSITIONS_MATCH','-([^0-9][^.]*)'); … … 203 205 204 206 /** 205 * Renvoie la composition qui s'applique àun objet206 * en tenant compte, le cas échéant, de la composition héritée207 * Renvoie la composition qui s'applique � un objet 208 * en tenant compte, le cas �ch�ant, de la composition h�rit�e 207 209 * si etoile=true on renvoi dire le champ sql 208 210 * … … 244 246 245 247 /** 246 * Renvoie la composition h éritée par un objet selon sa rubrique248 * Renvoie la composition h�rit�e par un objet selon sa rubrique 247 249 * 248 250 * @param string $type … … 279 281 /** 280 282 * #COMPOSITION 281 * Renvoie la composition s'appliquant àun objet282 * en tenant compte, le cas échéant, de l'héritage.283 * Renvoie la composition s'appliquant � un objet 284 * en tenant compte, le cas �ch�ant, de l'h�ritage. 283 285 * 284 286 * Sans precision, l'objet et son identifiant sont pris 285 * dans la boucle en cours, mais l'on peut sp écifier notre recherche287 * dans la boucle en cours, mais l'on peut sp�cifier notre recherche 286 288 * en passant objet et id_objet en argument de la balise : 287 289 * #COMPOSITION{article, 8} … … 290 292 * 291 293 * @param array $p AST au niveau de la balise 292 * @return array AST->code modifi épour calculer le nom de la composition294 * @return array AST->code modifi� pour calculer le nom de la composition 293 295 */ 294 296 function balise_COMPOSITION_dist($p) { … … 315 317 316 318 /** 317 * Indique si la composition d'un objet est verrouill ée ou non,319 * Indique si la composition d'un objet est verrouill�e ou non, 318 320 * auquel cas, seul le webmaster peut la modifier 319 321 * … … 350 352 351 353 /** 352 * Indique si les objets d'une branche sont verrouill és354 * Indique si les objets d'une branche sont verrouill�s 353 355 * @param integer $id_rubrique 354 356 * @param string $serveur -
_plugins_/compositions/compositions_pipeline.php
r46432 r52816 6 6 * 7 7 */ 8 8 9 if (!defined("_ECRIRE_INC_VERSION")) return; 10 9 11 // lister les exec ou apparait l'interface de composition et le type correspondant 10 12 // peut etre etendu par des plugins -
_plugins_/compositions/formulaires/editer_composition_objet.php
r45754 r52816 7 7 */ 8 8 9 if (!defined("_ECRIRE_INC_VERSION")) return; 9 10 10 11 include_spip('inc/compositions'); … … 57 58 } 58 59 59 // Si on h érite d'une composition60 // Si on h�rite d'une composition 60 61 // On modifie le tableau des compositions 61 62 if ($valeurs['composition_heritee'] AND $valeurs['composition_heritee'] != '-') { -
_plugins_/compositions/inc/compositions.php
r48983 r52816 6 6 * 7 7 */ 8 9 if (!defined("_ECRIRE_INC_VERSION")) return; 8 10 9 11 include_spip('compositions_fonctions'); -
_plugins_/compositions/lang/compositions_en.php
r42883 r52816 2 2 3 3 // This is a SPIP language file -- Ceci est un fichier langue de SPIP 4 if (!defined("_ECRIRE_INC_VERSION")) return; 4 5 5 6 $GLOBALS[$GLOBALS['idx_lang']] = array( -
_plugins_/compositions/lang/compositions_es.php
r42883 r52816 2 2 3 3 // This is a SPIP language file -- Ceci est un fichier langue de SPIP 4 if (!defined("_ECRIRE_INC_VERSION")) return; 4 5 5 6 $GLOBALS[$GLOBALS['idx_lang']] = array( -
_plugins_/compositions/lang/compositions_fr.php
r47210 r52816 2 2 3 3 // This is a SPIP language file -- Ceci est un fichier langue de SPIP 4 if (!defined("_ECRIRE_INC_VERSION")) return; 4 5 5 6 $GLOBALS[$GLOBALS['idx_lang']] = array( -
_plugins_/compositions/saisies/composition_fonctions.php
r42973 r52816 1 <?php 1 <?php 2 if (!defined("_ECRIRE_INC_VERSION")) return; 3 2 4 include_spip('inc/compositions'); 3 5 ?>
Note: See TracChangeset
for help on using the changeset viewer.