Sindbad~EG File Manager
<?php
/**
* ReduxFramework Barebones Sample Config File
* For full documentation, please visit: https://devs.redux.io/
*
* @package Redux Framework
*/
// phpcs:disabled
if ( ! class_exists( 'Redux' ) ) {
return null;
}
// This is your option name where all the Redux data is stored.
$opt_name = 'redux_demo';
/**
* GLOBAL ARGUMENTS
* All the possible arguments for Redux.
* For full documentation on arguments, please refer to: @link https://github.com/ReduxFramework/ReduxFramework/wiki/Arguments
*/
/**
* ---> BEGIN ARGUMENTS
*/
$theme = wp_get_theme(); // For use with some settings. Not necessary.
$args = array(
// REQUIRED!! Change these values as you need/desire.
'opt_name' => $opt_name,
// Name that appears at the top of your panel.
'display_name' => $theme->get( 'Name' ),
// Version that appears at the top of your panel.
'display_version' => $theme->get( 'Version' ),
// Specify if the admin menu should appear or not. Options: menu or submenu (Under appearance only).
'menu_type' => 'menu',
// Show the sections below the admin menu item or not.
'allow_sub_menu' => true,
'menu_title' => esc_html__( 'Sample Options', 'your-textdomain-here' ),
'page_title' => esc_html__( 'Sample Options', 'your-textdomain-here' ),
// Disable this in case you want to create your own Google fonts loader.
'disable_google_fonts_link' => false,
// Show the panel pages on the admin bar.
'admin_bar' => true,
// Choose an icon for the admin bar menu.
'admin_bar_icon' => 'dashicons-portfolio',
// Choose a priority for the admin bar menu.
'admin_bar_priority' => 50,
// Set a different name for your global variable other than the opt_name.
'global_variable' => '',
// Show the time the page took to load, etc.
'dev_mode' => true,
// Enable basic customizer support.
'customizer' => true,
// Order where the menu appears in the admin area. If there is any conflict, something will not show. Warning.
'page_priority' => null,
// For a full list of options, visit: @link https://codex.wordpress.org/Function_Reference/add_submenu_page#Parameters.
'page_parent' => 'themes.php',
// Permissions needed to access the options panel.
'page_permissions' => 'manage_options',
// Specify a custom URL to an icon.
'menu_icon' => '',
// Force your panel to always open to a specific tab (by id).
'last_tab' => '',
// Icon displayed in the admin panel next to your menu_title.
'page_icon' => 'icon-themes',
// Page slug used to denote the panel.
'page_slug' => '_options',
// On load save the defaults to DB before user clicks save or not.
'save_defaults' => true,
// If true, shows the default value next to each field that is not the default value.
'default_show' => false,
// What to print by the field's title if the value shown is default. Suggested: *.
'default_mark' => '',
// Shows the Import/Export panel when not used as a field.
'show_import_export' => true,
// CAREFUL: These options are for advanced use only.
'transient_time' => 60 * MINUTE_IN_SECONDS,
// Global shut-off for dynamic CSS output by the framework. Will also disable google fonts output.
'output' => true,
// Allows dynamic CSS to be generated for customizer and google fonts, but stops the dynamic CSS from going to the head.
'output_tag' => true,
// FUTURE → Not in use yet, but reserved or partially implemented.
// Use at your own risk.
// Possible: options, theme_mods, theme_mods_expanded, transient. Not fully functional, warning!
'database' => '',
'compiler' => true,
// Enable or disable flyout menus when hovering over a menu with submenus.
'flyout_submenus' => true,
// Mode to display fonts (auto|block|swap|fallback|optional)
// See: https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display .
'font_display' => 'swap',
// HINTS.
'hints' => array(
'icon' => 'el el-question-sign',
'icon_position' => 'right',
'icon_color' => 'lightgray',
'icon_size' => 'normal',
'tip_style' => array(
'color' => 'light',
'shadow' => true,
'rounded' => false,
'style' => '',
),
'tip_position' => array(
'my' => 'top left',
'at' => 'bottom right',
),
'tip_effect' => array(
'show' => array(
'effect' => 'slide',
'duration' => '500',
'event' => 'mouseover',
),
'hide' => array(
'effect' => 'slide',
'duration' => '500',
'event' => 'click mouseleave',
),
),
),
);
// ADMIN BAR LINKS → Set up custom links in the admin bar menu as external items.
$args['admin_bar_links'][] = array(
'id' => 'redux-docs',
'href' => '//devs.redux.io/',
'title' => esc_html__( 'Documentation', 'your-textdomain-here' ),
);
$args['admin_bar_links'][] = array(
'id' => 'redux-support',
'href' => '//github.com/ReduxFramework/redux-framework/issues',
'title' => esc_html__( 'Support', 'your-textdomain-here' ),
);
$args['admin_bar_links'][] = array(
'id' => 'redux-extensions',
'href' => 'redux.io/extensions',
'title' => esc_html__( 'Extensions', 'your-textdomain-here' ),
);
// SOCIAL ICONS → Set up custom links in the footer for quick links in your panel footer icons.
$args['share_icons'][] = array(
'url' => '//github.com/ReduxFramework/ReduxFramework',
'title' => 'Visit us on GitHub',
'icon' => 'el el-github',
);
$args['share_icons'][] = array(
'url' => '//www.facebook.com/pages/Redux-Framework/243141545850368',
'title' => esc_html__( 'Like us on Facebook', 'your-textdomain-here' ),
'icon' => 'el el-facebook',
);
$args['share_icons'][] = array(
'url' => '//twitter.com/reduxframework',
'title' => esc_html__( 'Follow us on Twitter', 'your-textdomain-here' ),
'icon' => 'el el-twitter',
);
$args['share_icons'][] = array(
'url' => '//www.linkedin.com/company/redux-framework',
'title' => esc_html__( 'Find us on LinkedIn', 'your-textdomain-here' ),
'icon' => 'el el-linkedin',
);
// Panel Intro text → before the form.
if ( false !== $args['global_variable'] ) {
if ( ! empty( $args['global_variable'] ) ) {
$v = $args['global_variable'];
} else {
$v = str_replace( '-', '_', $args['opt_name'] );
}
$args['intro_text'] = '<p>' . sprintf( __( 'Did you know that Redux sets a global variable for you? To access any of your saved options from within your code you can use your global variable: $s', 'your-textdomain-here' ) . '</p>', '<strong>' . $v . '</strong>' );
} else {
$args['intro_text'] = '<p>' . esc_html__( 'This text is displayed above the options panel. It isn\'t required, but more info is always better! The intro_text field accepts all HTML.', 'your-textdomain-here' ) . '</p>';
}
// Add content after the form.
$args['footer_text'] = '<p>' . esc_html__( 'This text is displayed below the options panel. It isn\'t required, but more info is always better! The footer_text field accepts all HTML.', 'your-textdomain-here' ) . '</p>';
Redux::set_args( $opt_name, $args );
/*
* ---> END ARGUMENTS
*/
/*
* ---> BEGIN HELP TABS
*/
$help_tabs = array(
array(
'id' => 'redux-help-tab-1',
'title' => esc_html__( 'Theme Information 1', 'your-textdomain-here' ),
'content' => '<p>' . esc_html__( 'This is the tab content, HTML is allowed.', 'your-textdomain-here' ) . '</p>',
),
array(
'id' => 'redux-help-tab-2',
'title' => esc_html__( 'Theme Information 2', 'your-textdomain-here' ),
'content' => '<p>' . esc_html__( 'This is the tab content, HTML is allowed.', 'your-textdomain-here' ) . '</p>',
),
);
Redux::set_help_tab( $opt_name, $help_tabs );
// Set the help sidebar.
$content = '<p>' . esc_html__( 'This is the sidebar content, HTML is allowed.', 'your-textdomain-here' ) . '</p>';
Redux::set_help_sidebar( $opt_name, $content );
/*
* <--- END HELP TABS
*/
/*
*
* ---> BEGIN SECTIONS
*
*/
/* As of Redux 3.5+, there is an extensive API. This API can be used in a mix/match mode allowing for. */
/* -> START Basic Fields. */
$kses_exceptions = array(
'a' => array(
'href' => array(),
),
'strong' => array(),
'br' => array(),
);
$section = array(
'title' => esc_html__( 'Basic Field', 'your-textdomain-here' ),
'id' => 'basic',
'desc' => esc_html__( 'Basic field with no subsections.', 'your-textdomain-here' ),
'icon' => 'el el-home',
'fields' => array(
array(
'id' => 'opt-text',
'type' => 'text',
'title' => esc_html__( 'Example Text', 'your-textdomain-here' ),
'desc' => esc_html__( 'Example description.', 'your-textdomain-here' ),
'subtitle' => esc_html__( 'Example subtitle.', 'your-textdomain-here' ),
'hint' => array(
'content' => wp_kses( __( 'This is a <strong>hint</strong> tool-tip for the text field.<br/><br/>Add any HTML-based text you like here.', 'your-textdomain-here' ), $kses_exceptions ),
),
),
),
);
Redux::set_section( $opt_name, $section );
$section = array(
'title' => __( 'Basic Fields', 'your-textdomain-here' ),
'id' => 'basic',
'desc' => __( 'Basic fields as subsections.', 'your-textdomain-here' ),
'icon' => 'el el-home',
);
Redux::set_section( $opt_name, $section );
$section = array(
'title' => esc_html__( 'Text', 'your-textdomain-here' ),
'desc' => esc_html__( 'For full documentation on this field, visit: ', 'your-textdomain-here' ) . '<a href="https://devs.redux.io/core-fields/text.html" target="_blank">https://devs.redux.io/core-fields/text.html</a>',
'id' => 'opt-text-subsection',
'subsection' => true,
'fields' => array(
array(
'id' => 'text-example',
'type' => 'text',
'title' => esc_html__( 'Text Field', 'your-textdomain-here' ),
'subtitle' => esc_html__( 'Subtitle', 'your-textdomain-here' ),
'desc' => esc_html__( 'Field Description', 'your-textdomain-here' ),
'default' => 'Default Text',
),
),
);
Redux::set_section( $opt_name, $section );
$section = array(
'title' => esc_html__( 'Text Area', 'your-textdomain-here' ),
'desc' => esc_html__( 'For full documentation on this field, visit: ', 'your-textdomain-here' ) . '<a href="https://devs.redux.io/core-fields/textarea.html" target="_blank">https://devs.redux.io/core-fields/textarea.html</a>',
'id' => 'opt-textarea-subsection',
'subsection' => true,
'fields' => array(
array(
'id' => 'textarea-example',
'type' => 'textarea',
'title' => esc_html__( 'Text Area Field', 'your-textdomain-here' ),
'subtitle' => esc_html__( 'Subtitle', 'your-textdomain-here' ),
'desc' => esc_html__( 'Field Description', 'your-textdomain-here' ),
'default' => 'Default Text',
),
),
);
Redux::set_section( $opt_name, $section );
/*
* <--- END SECTIONS
*/
// phpcs:enable
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists