[SPIP] v3.2.12 -> v3.2.12 - Reinstallation avec le spip_loader
[lhc/web/www.git] / www / plugins-dist / porte_plume / barre_outils / vide.php
1 <?php
2 /**
3 * Déclaration de la barre d'outil vide de SPIP
4 *
5 * @plugin Porte Plume pour SPIP
6 * @license GPL
7 * @package SPIP\PortePlume\BarreOutils
8 */
9 if (!defined("_ECRIRE_INC_VERSION")) {
10 return;
11 }
12
13
14 /**
15 * Définition de la barre 'vide' pour markitup
16 *
17 * @return Barre_outils La barre d'outil
18 */
19
20 function barre_outils_vide() {
21 $set = new Barre_outils(array(
22 'nameSpace' => 'vide',
23 'markupSet' => array(),
24 ));
25 $set->cacherTout();
26 return $set;
27 }
28