WP File Manager
Current Path:
/
home
/
argothem
/
www
/
organecyberpresse
/
plugins
/
auto
/
boutonstexte
/
v3.1.0
/
formulaires
/
Name
Action
..
configurer_boutonstexte.html
Edit
configurer_boutonstexte_fonctions.php
Edit
Editing: configurer_boutonstexte_fonctions.php
<?php if (!defined('_ECRIRE_INC_VERSION')) { return; } // https://code.spip.net/@find_all_in_path function find_boutons_skins() { $maxfiles = 1000; $dir = 'boutonstexte/themes/'; $themes = []; // Parcourir le chemin foreach (creer_chemin() as $d) { $f = $d . $dir; if (@is_dir($f)) { $liste = preg_files($f, 'fontsizeup.svg', $maxfiles); foreach ($liste as $chemin) { $nom = substr(dirname($chemin), strlen($f)); $themes[$nom] = $nom; } } } return $themes; }