1 | <?php |
---|
2 | |
---|
3 | // Ceci est un fichier langue de SPIP -- This is a SPIP language file |
---|
4 | // |
---|
5 | /// Fichier produit par PlugOnet |
---|
6 | // Module: paquet-apropos |
---|
7 | // Langue: en |
---|
8 | // Date: 17-10-2011 12:32:15 |
---|
9 | // Items: 2 |
---|
10 | |
---|
11 | if (!defined('_ECRIRE_INC_VERSION')) return; |
---|
12 | |
---|
13 | $GLOBALS[$GLOBALS['idx_lang']] = array( |
---|
14 | |
---|
15 | // A |
---|
16 | 'apropos_description' => 'Lists the active plugins and displays a brief description of them. |
---|
17 | |
---|
18 | It is used to display a page of type \"about the site\" with a summary of actives plugins, including the icon of these. |
---|
19 | |
---|
20 | <br /> |
---|
21 | |
---|
22 | You can use the new balise #APROPOS into your templates. This balise has 4 parameters:<br /> |
---|
23 | |
---|
24 | - if you wrote: <code>#APROPOS{liste}</code>, you get the list of the actives plugins, |
---|
25 | |
---|
26 | - if you wrote: <code>#APROPOS{nombre}</code>, you get the number of all the actives plugins AND locked plugins. |
---|
27 | |
---|
28 | - if you wrote: <code>#APROPOS{plugins}</code>, you get the number of the actives plugins. |
---|
29 | |
---|
30 | - if you wrote: <code>#APROPOS{extensions}</code>, you get the number of the actives locked plugins. |
---|
31 | |
---|
32 | - if you wrote: <code>#APROPOS{adisposition}</code>, you get the number of plugins in the folder plugins. |
---|
33 | |
---|
34 | - if you wrote: <code>#APROPOS{disponible}</code>, you get the total number of locked plugins and plugins of your configuration. |
---|
35 | |
---|
36 | |
---|
37 | |
---|
38 | To personalize the informations which are displayed before and after the list, modify the file modeles/apropos_liste.html after copying it into your folder squelettes/modeles. |
---|
39 | |
---|
40 | <br />To view the list in an article, you must write <code><apropos|liste></code>. |
---|
41 | |
---|
42 | To display the number of actives plugins AND locked plugins, write <code><apropos|nombre></code>. |
---|
43 | |
---|
44 | To display the number of actives plugins, write <code><apropos|plugins></code>. |
---|
45 | |
---|
46 | To display the number of actives locked plugins, write <code><apropos|extensions></code>.<br /> |
---|
47 | |
---|
48 | To display the number of plugins in the folder plugins, write <code><apropos|adisposition></code>. |
---|
49 | |
---|
50 | To display the total number of locked plugins and plugins of your configuration, write <code><apropos|disponible></code>. |
---|
51 | |
---|
52 | If you want to display the full description of a specific plugin, use this: <code><apropos|prefixe=the prefixe of the plugin></code>. For example, to display the description of this plugin, write: <code><apropos|prefixe=apropos></code>. |
---|
53 | |
---|
54 | ', |
---|
55 | 'apropos_slogan' => 'Lists the active plugins and displays a brief description of them', |
---|
56 | ); |
---|
57 | ?> |
---|