PluginProbe
Admin and Site Enhancements (ASE) / 7.5.3
Admin and Site Enhancements (ASE) v7.5.3
9.1.1 9.1.0 9.0.2 9.0.1 9.0.0 8.9.2 8.9.1 8.9.0 8.8.8 8.8.7 8.8.6 8.8.5 8.8.4 8.8.3 8.8.2 8.8.1 8.8.0 8.7.3 8.7.2 8.7.1 8.2.1 8.2.2 8.2.3 8.3.0 8.3.1 All 273 releases
admin-site-enhancements / classes / class-wider-admin-menu.php
class-wider-admin-menu.php
31 lines 764 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace ASENHA\Classes;
4
5 /**
6 * Class for Wider Admin Menu module
7 *
8 * @since 6.9.5
9 */
10 class Wider_Admin_Menu {
11
12 /**
13 * Set custom admin menu width
14 *
15 * @since 5.2.0
16 */
17 public function set_custom_menu_width() {
18
19 $options = get_option( ASENHA_SLUG_U, array() );
20 $custom_width = $options['admin_menu_width'];
21
22 $wp_version = get_bloginfo( 'version' );
23 if ( version_compare( $wp_version, '5', '>' ) ) {
24 require_once ASENHA_PATH . 'includes/admin-menu-width/wp-v5-greater.php';
25 } elseif ( version_compare( $wp_version, '4', '>=' ) ) {
26 require_once ASENHA_PATH . 'includes/admin-menu-width/wp-v4-greater.php';
27 } else {}
28
29 }
30
31 }