initSettings(); } else { add_action('plugins_loaded', array($this, 'initSettings'), 10); } } public function initSettings() { // Set the default arguments $this->setArguments(); // Set a few help tabs so you can see how it's done $this->setHelpTabs(); + // Create the sections and fields $this->setSections(); if (!isset($this->args['opt_name'])) { // No errors please return; } // If Redux is running as a plugin, this will remove the demo notice and links //add_action( 'redux/loaded', array( $this, 'remove_demo' ) ); // Function to test the compiler hook and demo CSS output. // Above 10 is a priority, but 2 in necessary to include the dynamically generated CSS to be sent to the function. //add_filter('redux/options/'.$this->args['opt_name'].'/compiler', array( $this, 'compiler_action' ), 10, 3); // Change the arguments after they've been declared, but before the panel is created //add_filter('redux/options/'.$this->args['opt_name'].'/args', array( $this, 'change_arguments' ) ); // Change the default value of a field after it's been set, but before it's been useds //add_filter('redux/options/'.$this->args['opt_name'].'/defaults', array( $this,'change_defaults' ) ); // Dynamically add a section. Can be also used to modify sections/fields //add_filter('redux/options/' . $this->args['opt_name'] . '/sections', array($this, 'dynamic_section')); $this->ReduxFramework = new ReduxFramework($this->sections, $this->args); } /** This is a test function that will let you see when the compiler hook occurs. It only runs if a field set with compiler=>true is changed. * */ function compiler_action($options, $css, $changed_values) { echo '

The compiler hook has run!

'; echo "
";
            print_r($changed_values); // Values that have changed since the last save
            echo "
"; //print_r($options); //Option values //print_r($css); // Compiler selector CSS values compiler => array( CSS SELECTORS ) /* // Demo of how to use the dynamic CSS and write your own static CSS file $filename = dirname(__FILE__) . '/style' . ''; global $wp_filesystem; if( empty( $wp_filesystem ) ) { require_once( ABSPATH .'/wp-admin/includes/file.php' ); WP_Filesystem(); } if( $wp_filesystem ) { $wp_filesystem->put_contents( $filename, $css, FS_CHMOD_FILE // predefined mode settings for WP files ); } */ } /** Custom function for filtering the sections array. Good for child themes to override or add to the sections. Simply include this function in the child themes functions.php file. NOTE: the defined constants for URLs, and directories will NOT be available at this point in a child theme, so you must use get_template_directory_uri() if you want to use any of the built in icons * */ function dynamic_section($sections) { //$sections = array(); $sections[] = array( 'title' => __('Section via hook', 'elano'), 'desc' => __('

This is a section created by adding a filter to the sections array. Can be used by child themes to add/remove sections from the options.

', 'elano'), 'icon' => 'el-icon-paper-clip', // Leave this as a blank section, no options just some intro text set above. 'fields' => array() ); return $sections; } /** Filter hook for filtering the args. Good for child themes to override or add to the args array. Can also be used in other functions. * */ function change_arguments($args) { //$args['dev_mode'] = true; return $args; } /** Filter hook for filtering the default value of any given field. Very useful in development mode. * */ function change_defaults($defaults) { $defaults['str_replace'] = 'Testing filter hook!'; return $defaults; } // Remove the demo link and the notice of integrated demo from the redux-framework plugin function remove_demo() { // Used to hide the demo mode link from the plugin page. Only used when Redux is a plugin. if (class_exists('ReduxFrameworkPlugin')) { remove_filter('plugin_row_meta', array(ReduxFrameworkPlugin::instance(), 'plugin_metalinks'), null, 2); // Used to hide the activation notice informing users of the demo panel. Only used when Redux is a plugin. remove_action('admin_notices', array(ReduxFrameworkPlugin::instance(), 'admin_notices')); } } public function setSections() { /** Used within different fields. Simply examples. Search for ACTUAL DECLARATION for field examples * */ // Background Patterns Reader $sample_patterns_path = ReduxFramework::$_dir . '../sample/patterns/'; $sample_patterns_url = ReduxFramework::$_url . '../sample/patterns/'; $sample_patterns = array(); if (is_dir($sample_patterns_path)) : if ($sample_patterns_dir = opendir($sample_patterns_path)) : $sample_patterns = array(); while (( $sample_patterns_file = readdir($sample_patterns_dir) ) !== false) { if (stristr($sample_patterns_file, '.png') !== false || stristr($sample_patterns_file, '.jpg') !== false) { $name = explode('.', $sample_patterns_file); $name = str_replace('.' . end($name), '', $sample_patterns_file); $sample_patterns[] = array('alt' => $name, 'img' => $sample_patterns_url . $sample_patterns_file); } } endif; endif; ob_start(); $ct = wp_get_theme(); $this->theme = $ct; $item_name = $this->theme->get('Name'); $tags = $this->theme->Tags; $screenshot = $this->theme->get_screenshot(); $class = $screenshot ? 'has-screenshot' : ''; $customize_title = sprintf(__('Customize “%s”', 'elano'), $this->theme->display('Name')); ?>
<?php esc_attr_e('Current theme preview'); ?> <?php esc_attr_e('Current theme preview'); ?>

theme->display('Name'); ?>

theme->display('Description'); ?>

theme->parent()) { printf('

' . __('This child theme requires its parent theme, %2$s.') . '

', __('http://codex.wordpress.org/Child_Themes', 'elano'), $this->theme->parent()->display('Name')); } ?>
get_contents(dirname(__FILE__) . '/info-html.html'); } // ACTUAL DECLARATION OF SECTIONS //HOME OPTIONS $this->sections[] = array( 'title' => __('Home Settings', 'elano'), 'icon' => 'el-icon-home', // 'submenu' => false, // Setting submenu to false on a given section will hide it from the WordPress sidebar menu! 'fields' => array( array( 'id' => 'logo', 'type' => 'media', 'title' => __('Logo Normal', 'elano'), 'compiler' => 'true', 'mode' => false, // Can be set to false to allow any media type, or can also be set to any mime type. 'subtitle' => __('Upload header logo for your website', 'elano'), ), array( 'id' => 'favicon', 'type' => 'media', 'title' => __('Favicon', 'elano'), 'compiler' => 'true', 'mode' => false, // Can be set to false to allow any media type, or can also be set to any mime type. 'subtitle' => __('Upload favicon for your website', 'elano'), ), ), ); //HOMEPAGE SLIDER $this->sections[] = array( 'icon' => 'el-icon-th-large', 'title' => __('Slider Settings', 'elano'), 'heading' => __('Slider Settings', 'elano'), 'desc' => __('

This is the Description. HTML is allowed

', 'elano'), 'fields' => array( //Fields go here array( 'id' => 'opt-home-slides', 'type' => 'slides', 'title' => __('Slider', 'elano'), 'subtitle' => __('Unlimited slides with drag and drop sortings.', 'elano'), 'desc' => __('This field will store all slides values into a multidimensional array to use into a foreach loop.', 'elano'), 'placeholder' => array( 'title' => __('slider title', 'elano'), 'description' => __('Description', 'elano'), 'url' => __('Give us a link!', 'elano'), ), ), )//end of fields );//end of section //SERVICE CAROUSEL $this->sections[] = array( 'icon' => 'el-icon-network', 'title' => __('Service Settings', 'elano'), 'heading' => __('Service Settings', 'elano'), 'desc' => __('

This is the Description. HTML is allowed

', 'elano'), 'fields' => array( //Fields go here array( 'id' => 'opt-service-title', 'type' => 'text', 'title' => __('Service Section Title', 'elano'), //'subtitle' => __('Quickly add some CSS to your theme by adding it to this block.', 'redux-framework-demo'), 'desc' => __('Title for Service Section', 'elano'), 'validate' => 'no_html', 'default' => '' ), array( 'id' => 'opt-service-slides', 'type' => 'slides', 'title' => __('Service', 'elano'), 'subtitle' => __('Unlimited slides with drag and drop sortings.', 'elano'), 'desc' => __('This field will store all slides values into a multidimensional array to use into a foreach loop.', 'elano'), 'placeholder' => array( 'title' => __('service title', 'elano'), 'description' => __('Description', 'elano'), 'url' => __('Give us a link!', 'elano'), ), ), )//end of fields );//end of section //PROJECT SECTION $this->sections[] = array( 'title' => __('Project Settings', 'elano'), 'icon' => 'el-icon-website', // 'submenu' => false, // Setting submenu to false on a given section will hide it from the WordPress sidebar menu! 'fields' => array( array( 'id' => 'opt-project-title', 'type' => 'text', 'title' => __('Project Section Title', 'elano'), //'subtitle' => __('Quickly add some CSS to your theme by adding it to this block.', 'redux-framework-demo'), 'desc' => __('Title for Project Section', 'elano'), 'validate' => 'no_html', 'default' => '' ), array( 'id' => 'opt-project-subtitle', 'type' => 'text', 'title' => __('Project Subtitle', 'elano'), 'subtitle' => __('Project section subtitle.', 'elano'), 'desc' => __('Subtitle for Project section', 'elano'), 'validate' => 'no_html', 'default' => '' ), ), ); //TEAM SECTION $this->sections[] = array( 'title' => __('Team Settings', 'elano'), 'icon' => 'el-icon-group', // 'submenu' => false, // Setting submenu to false on a given section will hide it from the WordPress sidebar menu! 'fields' => array( array( 'id' => 'opt-team-title', 'type' => 'text', 'title' => __('Team Section Title', 'elano'), //'subtitle' => __('Quickly add some CSS to your theme by adding it to this block.', 'redux-framework-demo'), 'desc' => __('Title for Team Section', 'elano'), 'validate' => 'no_html', 'default' => '' ), array( 'id' => 'opt-team-subtitle', 'type' => 'text', 'title' => __('Team Subtitle', 'elano'), //'subtitle' => __('Quickly add some CSS to your theme by adding it to this block.', 'redux-framework-demo'), 'desc' => __('Subtitle for Team section', 'elano'), 'validate' => 'no_html', 'default' => '' ), ), ); //FUN FACTS SECTION $this->sections[] = array( 'title' => __('Fun Facts Settings', 'elano'), 'icon' => 'el-icon-idea', // 'submenu' => false, // Setting submenu to false on a given section will hide it from the WordPress sidebar menu! 'fields' => array( array( 'id' => 'opt-fun-title', 'type' => 'text', 'title' => __('Fun Section Title', 'elano'), //'subtitle' => __('Quickly add some CSS to your theme by adding it to this block.', 'redux-framework-demo'), 'desc' => __('Title for Fuun Section', 'elano'), 'validate' => 'no_html', 'default' => '' ), array( 'id' => 'opt-fun1-icons', 'type' => 'text', 'title' => __('Font Awesome Icons', 'elano'), //'subtitle' => __('Quickly add some CSS to your theme by adding it to this block.', 'redux-framework-demo'), 'desc' => __('Icons for Fun Fact section.Confused!!! check this link for more information Click here', 'elano'), 'validate' => 'no_html', 'default' => '' ), array( 'id' => 'opt-fun1-number', 'type' => 'text', 'title' => __('Number', 'elano'), //'subtitle' => __('Quickly add some CSS to your theme by adding it to this block.', 'redux-framework-demo'), 'desc' => __('Number for Fun Fact section', 'elano'), 'validate' => 'no_html', 'default' => '' ), array( 'id' => 'opt-fun1-title', 'type' => 'text', 'title' => __('1st Fun Title', 'elano'), //'subtitle' => __('Quickly add some CSS to your theme by adding it to this block.', 'redux-framework-demo'), 'desc' => __('Subtitle for Fun Fact section', 'elano'), 'validate' => 'no_html', 'default' => '' ), array( 'id' => 'opt-fun2-icons', 'type' => 'text', 'title' => __('Font Awesome Icons', 'elano'), //'subtitle' => __('Quickly add some CSS to your theme by adding it to this block.', 'redux-framework-demo'), 'desc' => __('Icons for Fun Fact section.Confused!!! check this link for more information Click here', 'elano'), 'validate' => 'no_html', 'default' => '' ), array( 'id' => 'opt-fun2-number', 'type' => 'text', 'title' => __('Number', 'elano'), //'subtitle' => __('Quickly add some CSS to your theme by adding it to this block.', 'redux-framework-demo'), 'desc' => __('Number for Fun Fact section', 'elano'), 'validate' => 'no_html', 'default' => '' ), array( 'id' => 'opt-fun2-title', 'type' => 'text', 'title' => __('2nd Fun Title', 'elano'), //'subtitle' => __('Quickly add some CSS to your theme by adding it to this block.', 'redux-framework-demo'), 'desc' => __('Subtitle for Fun Fact section', 'elano'), 'validate' => 'no_html', 'default' => '' ), array( 'id' => 'opt-fun3-icons', 'type' => 'text', 'title' => __('Font Awesome Icons', 'elano'), //'subtitle' => __('Quickly add some CSS to your theme by adding it to this block.', 'redux-framework-demo'), 'desc' => __('Icons for Fun Fact section.Confused!!! check this link for more information Click here', 'elano'), 'validate' => 'no_html', 'default' => '' ), array( 'id' => 'opt-fun3-title', 'type' => 'text', 'title' => __('3rd Fun Title', 'elano'), //'subtitle' => __('Quickly add some CSS to your theme by adding it to this block.', 'redux-framework-demo'), 'desc' => __('Subtitle for Fun Fact section', 'elano'), 'validate' => 'no_html', 'default' => '' ), array( 'id' => 'opt-fun3-number', 'type' => 'text', 'title' => __('Number', 'elano'), //'subtitle' => __('Quickly add some CSS to your theme by adding it to this block.', 'redux-framework-demo'), 'desc' => __('Number for Fun Fact section', 'elano'), 'validate' => 'no_html', 'default' => '' ), array( 'id' => 'opt-fun4-icons', 'type' => 'text', 'title' => __('Font Awesome Icons', 'elano'), //'subtitle' => __('Quickly add some CSS to your theme by adding it to this block.', 'redux-framework-demo'), 'desc' => __('Icons for Fun Fact section.Confused!!! check this link for more information Click here', 'elano'), 'validate' => 'no_html', 'default' => '' ), array( 'id' => 'opt-fun4-number', 'type' => 'text', 'title' => __('Number', 'elano'), //'subtitle' => __('Quickly add some CSS to your theme by adding it to this block.', 'redux-framework-demo'), 'desc' => __('Number for Fun Fact section', 'elano'), 'validate' => 'no_html', 'default' => '' ), array( 'id' => 'opt-fun4-title', 'type' => 'text', 'title' => __('4th Fun Title', 'elano'), //'subtitle' => __('Quickly add some CSS to your theme by adding it to this block.', 'redux-framework-demo'), 'desc' => __('Subtitle for Fun Fact section', 'elano'), 'validate' => 'no_html', 'default' => '' ), ), ); //CONTACT SECTION $this->sections[] = array( 'title' => __('Contact Settings', 'elano'), 'icon' => 'el-icon-envelope', // 'submenu' => false, // Setting submenu to false on a given section will hide it from the WordPress sidebar menu! 'fields' => array( array( 'id' => 'opt-googlemap', 'type' => 'textarea', 'title' => __('Google Map', 'elano'), //'subtitle' => __('Quickly add some CSS to your theme by adding it to this block.', 'redux-framework-demo'), 'desc' => __('Copy the iframe from here Maps', 'elano'), 'default' => '' ), array( 'id' => 'opt-contact-maintitle', 'type' => 'text', 'title' => __('Contact Section Title', 'elano'), //'subtitle' => __('Quickly add some CSS to your theme by adding it to this block.', 'redux-framework-demo'), 'desc' => __('Title for Contact Section', 'elano'), 'validate' => 'no_html', 'default' => '' ), array( 'id' => 'opt-contact-title', 'type' => 'textarea', 'title' => __('Contact Subtitle', 'elano'), //'subtitle' => __('Quickly add some CSS to your theme by adding it to this block.', 'redux-framework-demo'), 'desc' => __('Enter the subtitle for contact section', 'elano'), 'default' => '' ), array( 'id' => 'opt-contact', 'type' => 'editor', 'title' => __('Contact Details', 'elano'), //'subtitle' => __('Quickly add some CSS to your theme by adding it to this block.', 'redux-framework-demo'), 'desc' => __('Enter the address,phone,fax,email,website.HTML is allowed', 'elano'), 'default' => '' ), ), ); //FOOTER OPTIONS $this->sections[] = array( 'icon' => 'el-icon-th', 'title' => __('Footer Options', 'elano'), 'fields' => array( array( 'id' => 'footer_text', 'type' => 'editor', 'title' => __('Footer Text', 'elano'), 'subtitle' => __('The text written here will be display in footer', 'elano'), 'default' => 'Copyright 2014, Elano', ), ) ); //STYLING OPTIONS $this->sections[] = array( 'icon' => 'el-icon-website', 'title' => __('Styling Options', 'elano'), 'fields' => array( array( 'id' => 'custom_color', 'type' => 'color', 'title' => __('Your Custom Color', 'redux-framework-demo'), 'subtitle' => __('Select an custom color scheme.', 'elano'), ), array( 'id' => 'background', 'type' => 'background', 'output' => array('body'), 'title' => __('Body Background', 'elano'), 'subtitle' => __('Body background with image, color, etc.', 'elano'), 'default' => '#FFFFFF', ), array( 'id' => 'background-footer', 'type' => 'background', 'output' => array('.footer'), 'title' => __('Footer Background Color', 'elano'), 'subtitle' => __('Pick a background color for the footer (default: #dd9933).', 'elano'), 'default' => '#100f0f', ), ) ); //SOCIAL ICONS $this->sections[] = array( 'icon' => 'el-icon-bullhorn', 'title' => __('Social Icons', 'elano'), 'desc' => __('

You need to provide social details to display the social icons on footer.

', 'elano'), 'fields' => array( array( 'id' => 'social_facebook', 'type' => 'text', 'title' => __('Facebook URL', 'elano'), 'validate' => 'url', ), array( 'id' => 'social_twitter', 'type' => 'text', 'title' => __('Twitter URL', 'elano'), 'validate' => 'url', ), array( 'id' => 'social_googlep', 'type' => 'text', 'title' => __('Google Plus URL', 'elano'), 'validate' => 'url', ), array( 'id' => 'social_linkedin', 'type' => 'text', 'title' => __('LinkedIn URL', 'elano'), 'validate' => 'url', ), array( 'id' => 'social_pinterest', 'type' => 'text', 'title' => __('Pinterest URL', 'elano'), 'validate' => 'url', ), array( 'id' => 'social_skype', 'type' => 'text', 'title' => __('Skype URL', 'elano'), 'validate' => 'url', ), array( 'id' => 'social_dribbble', 'type' => 'text', 'title' => __('Dribble URL', 'elano'), 'validate' => 'url', ), array( 'id' => 'social_tumblr', 'type' => 'text', 'title' => __('Tumblr URL', 'elano'), 'validate' => 'url', ), array( 'id' => 'social_youtube', 'type' => 'text', 'title' => __('Youtube URL', 'elano'), 'validate' => 'url', ), array( 'id' => 'social_vimeo', 'type' => 'text', 'title' => __('Vimeo URL', 'elano'), 'validate' => 'url', ), array( 'id' => 'social_behance', 'type' => 'text', 'title' => __('Behance URL', 'elano'), 'validate' => 'url', ), ) ); //SEO OPTIONS $this->sections[] = array( 'icon' => 'el-icon-signal', 'title' => __('SEO options', 'elano'), 'desc' => __('

We consider your online presense.

', 'elano'), 'fields' => array( array( 'id' => 'meta_javascript', 'type' => 'textarea', 'title' => __('Tracking Code', 'elano'), 'subtitle' => __('Paste your Google Analytics (or other) tracking code here. This will be added into the footer template of your theme.', 'elano'), ), array( 'id' => 'meta_head', 'type' => 'textarea', 'title' => __('Meta Heading', 'elano'), 'validate' => 'no_html', ), array( 'id' => 'meta_author', 'type' => 'text', 'title' => __('Meta Author', 'elano'), ), array( 'id' => 'meta_desc', 'type' => 'textarea', 'title' => __('Meta Description', 'elano'), 'validate' => 'no_html', ), array( 'id' => 'meta_keyword', 'type' => 'textarea', 'title' => __('Meta Keyword', 'elano'), 'validate' => 'no_html', 'subtitle' => __('Enter the wordpress seperated by comma.', 'elano'), ), ) ); //CUSTOM CSS $this->sections[] = array( 'icon' => 'el-icon-check', 'title' => __('Custom CSS', 'elano'), 'desc' => __('

You can add custom CSS to override existing theme design.

', 'elano'), 'fields' => array( array( 'id' => 'extra-css', 'type' => 'ace_editor', 'title' => __('CSS Code', 'elano'), 'subtitle' => __('Paste your CSS code here.', 'elano'), 'mode' => 'css', 'theme' => 'monokai', 'desc' => 'Possible modes can be found at http://ace.c9.io/.', ), ) ); $theme_info = '
'; $theme_info .= '

' . __('Theme URL: ', 'elano') . '' . $this->theme->get('ThemeURI') . '

'; $theme_info .= '

' . __('Author: ', 'elano') . $this->theme->get('Author') . '

'; $theme_info .= '

' . __('Version: ', 'elano') . $this->theme->get('Version') . '

'; $theme_info .= '

' . $this->theme->get('Description') . '

'; $tabs = $this->theme->get('Tags'); if (!empty($tabs)) { $theme_info .= '

' . __('Tags: ', 'elano') . implode(', ', $tabs) . '

'; } $theme_info .= '
'; if (file_exists(dirname(__FILE__) . '/../README.md')) { //DOCUMENTATION $this->sections['theme_docs'] = array( 'icon' => 'el-icon-list-alt', 'title' => __('Documentation', 'elano'), 'fields' => array( array( 'id' => '17', 'type' => 'raw', 'markdown' => true, 'content' => wp_filesystem(dirname(__FILE__) . '/../README.md') ), ), ); } //IMPORT/EXPORT OPTION $this->sections[] = array( 'title' => __('Import / Export', 'elano'), 'desc' => __('Import and Export your Redux Framework settings from file, text or URL.', 'elano'), 'icon' => 'el-icon-refresh', 'fields' => array( array( 'id' => 'opt-import-export', 'type' => 'import_export', 'title' => 'Import Export', 'subtitle' => 'Save and restore your Redux options', 'full_width' => false, ), ), ); $this->sections[] = array( 'type' => 'divide', ); //THEME INFO $this->sections[] = array( 'icon' => 'el-icon-info-sign', 'title' => __('Theme Information', 'elano'), 'desc' => __('

This is the Description. Again HTML is allowed

', 'elano'), 'fields' => array( array( 'id' => 'opt-raw-info', 'type' => 'raw', 'content' => $item_info, ) ), ); if (file_exists(trailingslashit(dirname(__FILE__)) . 'README.html')) { $tabs['docs'] = array( 'icon' => 'el-icon-book', 'title' => __('Documentation', 'elano'), 'content' => nl2br(wp_filesystem(trailingslashit(dirname(__FILE__)) . 'README.html')) ); } } public function setHelpTabs() { // Custom page help tabs, displayed using the help API. Tabs are shown in order of definition. $this->args['help_tabs'][] = array( 'id' => 'redux-help-tab-1', 'title' => __('Theme Information 1', 'elano'), 'content' => __('

This is the tab content, HTML is allowed.

', 'elano') ); $this->args['help_tabs'][] = array( 'id' => 'redux-help-tab-2', 'title' => __('Theme Information 2', 'elano'), 'content' => __('

This is the tab content, HTML is allowed.

', 'elano') ); // Set the help sidebar $this->args['help_sidebar'] = __('

This is the sidebar content, HTML is allowed.

', 'elano'); } /** All the possible arguments for Redux. For full documentation on arguments, please refer to: https://github.com/ReduxFramework/ReduxFramework/wiki/Arguments * */ public function setArguments() { $theme = wp_get_theme(); // For use with some settings. Not necessary. $this->args = array( // TYPICAL -> Change these values as you need/desire 'opt_name' => 'elano_options', // This is where your data is stored in the database and also becomes your global variable name. 'display_name' => 'ELANO', // Name that appears at the top of your panel 'display_version' => $theme->get('Version'), // Version that appears at the top of your panel 'menu_type' => 'menu', //Specify if the admin menu should appear or not. Options: menu or submenu (Under appearance only) 'allow_sub_menu' => true, // Show the sections below the admin menu item or not 'menu_title' => __('Brandi Options', 'elano'), 'page_title' => __('Brandi Options', 'elano'), // You will need to generate a Google API key to use this feature. // Please visit: https://developers.google.com/fonts/docs/developer_api#Auth 'google_api_key' => '', // Must be defined to add google fonts to the typography module 'async_typography' => false, // Use a asynchronous font on the front end or font string 'admin_bar' => true, // Show the panel pages on the admin bar 'global_variable' => '', // Set a different name for your global variable other than the opt_name 'dev_mode' => false, // Show the time the page took to load, etc 'customizer' => false, // Enable basic customizer support //'open_expanded' => true, // Allow you to start the panel in an expanded way initially. //'disable_save_warn' => true, // Disable the save warning when a user changes a field // OPTIONAL -> Give you extra features 'page_priority' => null, // Order where the menu appears in the admin area. If there is any conflict, something will not show. Warning. 'page_parent' => 'themes.php', // For a full list of options, visit: http://codex.wordpress.org/Function_Reference/add_submenu_page#Parameters 'page_permissions' => 'manage_options', // Permissions needed to access the options panel. 'menu_icon' => '', // Specify a custom URL to an icon 'last_tab' => '', // Force your panel to always open to a specific tab (by id) 'page_icon' => 'icon-themes', // Icon displayed in the admin panel next to your menu_title 'page_slug' => '_options', // Page slug used to denote the panel 'save_defaults' => true, // On load save the defaults to DB before user clicks save or not 'default_show' => false, // If true, shows the default value next to each field that is not the default value. 'default_mark' => '', // What to print by the field's title if the value shown is default. Suggested: * 'show_import_export' => true, // Shows the Import/Export panel when not used as a field. // CAREFUL -> These options are for advanced use only 'transient_time' => 60 * MINUTE_IN_SECONDS, 'output' => true, // Global shut-off for dynamic CSS output by the framework. Will also disable google fonts output 'output_tag' => true, // Allows dynamic CSS to be generated for customizer and google fonts, but stops the dynamic CSS from going to the head 'footer_credit' => 'Elano Theme Optional Panel', // Disable the footer credit of Redux. Please leave if you can help it. // FUTURE -> Not in use yet, but reserved or partially implemented. Use at your own risk. 'database' => '', // possible: options, theme_mods, theme_mods_expanded, transient. Not fully functional, warning! 'system_info' => false, // REMOVE // HINTS 'hints' => array( 'icon' => 'icon-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', ), ), ) ); // SOCIAL ICONS -> Setup custom links in the footer for quick links in your panel footer icons. $this->args['share_icons'][] = array( 'url' => 'https://github.com/ReduxFramework/ReduxFramework', 'title' => 'Visit us on GitHub', 'icon' => 'el-icon-github' //'img' => '', // You can use icon OR img. IMG needs to be a full URL. ); $this->args['share_icons'][] = array( 'url' => 'https://www.facebook.com/pages/Redux-Framework/243141545850368', 'title' => 'Like us on Facebook', 'icon' => 'el-icon-facebook' ); $this->args['share_icons'][] = array( 'url' => 'http://twitter.com/reduxframework', 'title' => 'Follow us on Twitter', 'icon' => 'el-icon-twitter' ); $this->args['share_icons'][] = array( 'url' => 'http://www.linkedin.com/company/redux-framework', 'title' => 'Find us on LinkedIn', 'icon' => 'el-icon-linkedin' ); // Add content after the form. $this->args['footer_text'] = __('

Please get to us if you have any suggestions.

', 'elano'); } } global $reduxConfig; $reduxConfig = new Redux_Framework_sample_config(); } /** Custom function for the callback referenced above */ if (!function_exists('redux_my_custom_field')): function redux_my_custom_field($field, $value) { print_r($field); echo '
'; print_r($value); } endif; /** Custom function for the callback validation referenced above * */ if (!function_exists('redux_validate_callback_function')): function redux_validate_callback_function($field, $value, $existing_value) { $error = false; $value = 'just testing'; /* do your validation if(something) { $value = $value; } elseif(something else) { $error = true; $value = $existing_value; $field['msg'] = 'your custom error message'; } */ $return['value'] = $value; if ($error == true) { $return['error'] = $field; } return $return; } endif;