PATH:
home
/
letacommog
/
adelcya
/
wp-content
/
plugins
/
white-label-cms
/
includes
/
classes
<?php class WLCMS_Admin_Settings { public function __construct() { add_action('admin_menu', array($this, 'admin_menu'), 9999); add_action('admin_init', array($this, 'init'), 9999); add_filter('mce_css', array($this, 'custom_editor_stylesheet')); add_filter('contextual_help', array($this, 'remove_help_tabs'), 999, 3); add_action('admin_init', array($this, 'remove_nag_messages')); add_action('init', array($this, 'remove_admin_bar')); } public function init() { $this->set_admin_css(); $this->hide_screen_options(); } public function remove_admin_bar() { if (!wlcms_field_setting('hide_admin_bar_all')) { return; } return $this->disable_admin_bar_menu(); } private function disable_admin_bar_menu() { add_filter('show_admin_bar', '__return_false'); } public function admin_menu() { if (!is_admin()) { return; } } public function hide_screen_options() { if (wlcms_field_setting('hide_screen_options')) { add_filter('screen_options_show_screen', '__return_false'); } } public function remove_help_tabs($help, $screen_id, $screen) { if (wlcms_field_setting('hide_help_box')) { $screen->remove_help_tabs(); } return $help; } private function set_admin_css() { if (!$admin_style = wlcms_field_setting('settings_custom_css_admin')) { return; } wlcms()->Admin_Script()->appendAdminCss($admin_style); } public function custom_editor_stylesheet($mce_css) { $mce_style = wlcms_field_setting('settings_custom_css_url'); if (!$mce_style) { return $mce_css; } if (filter_var($mce_style, FILTER_VALIDATE_URL) === false) { $mce_style = get_stylesheet_directory_uri() . '/' . $mce_style; } $mce_css .= ',' . $mce_style; return $mce_css; } public function remove_nag_messages() { if (!wlcms_field_setting('hide_nag_messages')) { return; } remove_action('admin_notices', 'update_nag', 3); remove_action('admin_notices', 'maintenance_nag', 10); remove_action('network_admin_notices', 'update_nag', 3); } public function wp_version_check() { remove_action('init', 'wp_version_check'); } }
[+]
..
[-] Branding.php
[edit]
[-] I18n.php
[edit]
[-] Admin_Script.php
[edit]
[-] Admin_Core.php
[edit]
[-] Admin_Settings.php
[edit]
[-] Settings.php
[edit]
[-] Login.php
[edit]
[-] index.php
[edit]
[-] Messages.php
[edit]
[-] Previewable.php
[edit]
[-] Wizard.php
[edit]
[-] Admin_Dashboard.php
[edit]
[-] Loader.php
[edit]
[-] Upgrade.php
[edit]
[-] Admin_Menus.php
[edit]