-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmes_options.php
More file actions
28 lines (23 loc) · 931 Bytes
/
mes_options.php
File metadata and controls
28 lines (23 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/* trouver les plugins dans le dossier squelettes/plugins
***********************************************************/
define('_DIR_PLUGINS_SUPPL',_DIR_RACINE."squelettes/plugins/");
/* change all characters in URL to lowercase
***********************************************************/
define('_url_minuscules', 1);
/* modifies the way URL are created
***********************************************************/
$GLOBALS['url_arbo_types'] = array(
'rubrique'=>'',
'article'=>'',
'mot'=>'tag'
);
/* always strip numeral prefix in titles
***********************************************************/
$table_des_traitements['TITRE'][]= 'typo(supprimer_numero(%s))';
/* for 'arbo' URL pattern
***********************************************************/
#$GLOBALS['url_arbo_parents']=array('article'=>array('id_rubrique','racine'));
$GLOBALS['debut_intertitre'] = '<h2>';
$GLOBALS['fin_intertitre'] = '</h2>';
?>