Changeset 93629 in spip-zone for _core_/plugins/urls_etendues/prive/squelettes/contenu/configurer_urls_fonctions.php
- Timestamp:
- Dec 13, 2015, 11:58:52 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
_core_/plugins/urls_etendues/prive/squelettes/contenu/configurer_urls_fonctions.php
r53218 r93629 1 1 <?php 2 2 3 if (!defined('_ECRIRE_INC_VERSION')) return; 3 if (!defined('_ECRIRE_INC_VERSION')) { 4 return; 5 } 4 6 5 function choisir_form_configuration($type_url) {7 function choisir_form_configuration($type_url) { 6 8 if (include_spip("urls/$type_url") 7 AND defined($c='URLS_'.strtoupper($type_url).'_CONFIG')) 8 return "configurer_urls_".strtolower(constant($c)); 9 AND defined($c = 'URLS_' . strtoupper($type_url) . '_CONFIG') 10 ) { 11 return "configurer_urls_" . strtolower(constant($c)); 12 } 9 13 10 14 return ''; 11 15 } 16 12 17 ?>
Note: See TracChangeset
for help on using the changeset viewer.