File: D:/HostingSpaces/MvAlphen/va-bo.nl/wwwroot/wp-content/themes/hattan/includes/ReduxConfig/config.php
<?php
/**
ReduxFramework Sample Config File
For full documentation, please visit: https://docs.reduxframework.com
* */
if (!class_exists('Redux_Framework_sample_config')) {
class Redux_Framework_sample_config {
public $args = array();
public $sections = array();
public $theme;
public $ReduxFramework;
public function __construct() {
if (!class_exists('ReduxFramework')) {
return;
}
// This is needed. Bah WordPress bugs. ;)
if (true == Redux_Helpers::isTheme(__FILE__)) {
$this->initSettings();
} else {
add_action('plugins_loaded', array($this, 'initSettings'), 10);
}
}
public function initSettings() {
// Just for demo purposes. Not needed per say.
$this->theme = wp_get_theme();
// 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 '<h1>The compiler hook has run!</h1>';
echo "<pre>";
print_r($changed_values); // Values that have changed since the last save
echo "</pre>";
//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' . '.css';
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', EF1_THEME_NAME),
'desc' => __('<p class="description">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.</p>', EF1_THEME_NAME),
'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”', EF1_THEME_NAME), $this->theme->display('Name'));
?>
<div id="current-theme" class="<?php echo esc_attr($class); ?>">
<?php if ($screenshot) : ?>
<?php if (current_user_can('edit_theme_options')) : ?>
<a href="<?php echo wp_customize_url(); ?>" class="load-customize hide-if-no-customize" title="<?php echo esc_attr($customize_title); ?>">
<img src="<?php echo esc_url($screenshot); ?>" alt="<?php esc_attr_e('Current theme preview'); ?>" />
</a>
<?php endif; ?>
<img class="hide-if-customize" src="<?php echo esc_url($screenshot); ?>" alt="<?php esc_attr_e('Current theme preview'); ?>" />
<?php endif; ?>
<h4><?php echo $this->theme->display('Name'); ?></h4>
<div>
<ul class="theme-info">
<li><?php printf(__('By %s', EF1_THEME_NAME), $this->theme->display('Author')); ?></li>
<li><?php printf(__('Version %s', EF1_THEME_NAME), $this->theme->display('Version')); ?></li>
<li><?php echo '<strong>' . __('Tags', EF1_THEME_NAME) . ':</strong> '; ?><?php printf($this->theme->display('Tags')); ?></li>
</ul>
<p class="theme-description"><?php echo $this->theme->display('Description'); ?></p>
<?php
if ($this->theme->parent()) {
printf(' <p class="howto">' . __('This <a href="%1$s">child theme</a> requires its parent theme, %2$s.') . '</p>', __('http://codex.wordpress.org/Child_Themes', EF1_THEME_NAME), $this->theme->parent()->display('Name'));
}
?>
</div>
</div>
<?php
$item_info = ob_get_contents();
ob_end_clean();
$sampleHTML = '';
if (file_exists(dirname(__FILE__) . '/info-html.html')) {
Redux_Functions::initWpFilesystem();
global $wp_filesystem;
$sampleHTML = $wp_filesystem->get_contents(dirname(__FILE__) . '/info-html.html');
}
// ACTUAL DECLARATION OF SECTIONS
$this->sections[] = array(
'title' => __('General Options', EF1_THEME_NAME),
'desc' => false,
'icon' => 'el-icon-cogs',
// 'submenu' => false, // Setting submenu to false on a given section will hide it from the WordPress sidebar menu!
'fields' => array(
array(
'id' => 'body-background',
'type' => 'background',
'output' => array('body'),
'title' => __('Body Background Color', EF1_THEME_NAME),
'default' => '#FFFFFF',
'validate' => 'color',
),
array(
'id' => 'body-typography',
'type' => 'typography',
'title' => __('Body typography', EF1_THEME_NAME),
//'compiler' => true, // Use if you want to hook in your own CSS compiler
'google' => true, // Disable google fonts. Won't work if you haven't defined your google api key
'font-backup' => true, // Select a backup non-google font in addition to a google font
//'font-style' => false, // Includes font-style and weight. Can use font-style or font-weight to declare
//'subsets' => false, // Only appears if google is true and subsets not set to false
//'font-size' => false,
'line-height' => true,
//'word-spacing' => true, // Defaults to false
//'letter-spacing'=> true, // Defaults to false
//'color' => false,
//'preview' => false, // Disable the previewer
'all_styles' => true, // Enable all Google Font style/weight variations to be added to the page
'output' => array('body'), // An array of CSS selectors to apply this font style to dynamically
'units' => 'px', // Defaults to px
'subtitle' => false,
),
array(
'id' => 'general-color',
'type' => 'color',
'output' => array('.site-title'),
'title' => __('General Color', EF1_THEME_NAME),
'default' => '#FC4949',
'validate' => 'color',
'compiler' => false
),
array(
'id' => 'logo',
'type' => 'media',
'title' => __('Select logo', EF1_THEME_NAME),
'options' => $sample_patterns,
'default' => '',
),
array(
'id' => 'logo-retina',
'type' => 'media',
'title' => __('Select logo (retina)', EF1_THEME_NAME),
'options' => $sample_patterns,
'default' => '',
),
array(
'id' => 'custom-favicon',
'type' => 'media',
'title' => __('Select favicon', EF1_THEME_NAME),
'options' => $sample_patterns,
'default' => '',
),
array(
'id' => 'preloader-on',
'type' => 'switch',
'title' => __('Preloader', EF1_THEME_NAME),
'default' => true,
),
array(
'id' => 'preloader-background',
'type' => 'background',
'output' => array('#preloader'),
'title' => __('Preloader Background Color', EF1_THEME_NAME)
)
),
);
$this->sections[] = array(
'title' => __('Header', EF1_THEME_NAME),
'desc' => false,
'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' => 'menu-type',
'type' => 'select',
'title' => __( 'Header Type', EF1_THEME_NAME ),
//Must provide key => value pairs for select options
'options' => array(
'menu-1' => 'Header 1',
'menu-2' => 'Header 2',
'menu-3' => 'Header 3',
'menu-4' => 'Header 4'
),
'default' => 'menu-1'
),
array(
'id' => 'header-img',
'type' => 'media',
'title' => __('Header Image (blog)', EF1_THEME_NAME),
'options' => $sample_patterns,
'default' => '',
),
array(
'id' => 'header-background',
'type' => 'background',
'output' => array('#main-menu,.menu-type-2 .col-md-12,#side-menu '),
'title' => __('Header Background Color', EF1_THEME_NAME),
'default' => '#FFFFFF',
'validate' => 'color',
),
array(
'id' => 'header-background-2',
'type' => 'background',
'output' => array('.menu-type-2 #logo '),
'title' => __('Header Background Color', EF1_THEME_NAME),
'default' => '#000000',
'validate' => 'color',
'subtitle'=>'Second color in Header'
),
array(
'id' => 'header-typography',
'type' => 'typography',
'title' => __('Header typography', EF1_THEME_NAME),
//'compiler' => true, // Use if you want to hook in your own CSS compiler
'google' => true, // Disable google fonts. Won't work if you haven't defined your google api key
'font-backup' => true, // Select a backup non-google font in addition to a google font
//'font-style' => false, // Includes font-style and weight. Can use font-style or font-weight to declare
//'subsets' => false, // Onfly appears if google is true and subsets not set to false
//'font-size' => false,
'line-height' => false,
//'word-spacing' => true, // Defaults to false
//'letter-spacing'=> true, // Defaults to false
//'color' => false,
//'preview' => false, // Disable the previewer
'all_styles' => true, // Enable all Google Font style/weight variations to be added to the page
'output' => array('#side-menu > ul > li > a,#main-menu .desktop-menu > .menu-container > ul > li > a'), // An array of CSS selectors to apply this font style to dynamically
'units' => 'px', // Defaults to px
'subtitle' => false,
),
array(
'id' => 'header-active',
'type' => 'color',
'output' => array('#main-menu .desktop-menu > .menu-container > ul > li.active > a, #main-menu .desktop-menu > .menu-container > ul > li > a:hover,.menu-type-3 .desktop-menu > .menu-container ul > .active > a::after, .menu-type-3 .desktop-menu > .menu-container ul > .current-menu-item > a::after, .menu-type-3 .desktop-menu > .menu-container > ul > li:hover > a::after,#main-menu .desktop-menu > .menu-container > ul > .current-menu-item > a '),
'title' => __('Header Active And Hover Item Color', EF1_THEME_NAME),
'default' => '',
'validate' => 'color',
'important' => true
),
array(
'id' => 'header-border',
'type' => 'border',
'output' => array('#main-menu'),
'title' => __('Header Border Bottom Color', EF1_THEME_NAME),
'default' => '',
'all' => false,
'top' => false,
'left' => false,
'right' => false,
'bottom' => true,
),
array(
'id' => 'submenu-background',
'type' => 'background',
'output' => array('#main-menu .desktop-menu > .menu-container .sub-menu'),
'title' => __('Submenu Background Color', EF1_THEME_NAME),
'default' => '',
'validate' => 'color',
),
array(
'id' => 'submenu-typography',
'type' => 'typography',
'title' => __('Submenu typography', EF1_THEME_NAME),
//'compiler' => true, // Use if you want to hook in your own CSS compiler
'google' => true, // Disable google fonts. Won't work if you haven't defined your google api key
'font-backup' => true, // Select a backup non-google font in addition to a google font
//'font-style' => false, // Includes font-style and weight. Can use font-style or font-weight to declare
//'subsets' => false, // Only appears if google is true and subsets not set to false
//'font-size' => false,
'line-height' => false,
//'word-spacing' => true, // Defaults to false
//'letter-spacing'=> true, // Defaults to false
//'color' => false,
//'preview' => false, // Disable the previewer
'all_styles' => true, // Enable all Google Font style/weight variations to be added to the page
'output' => array('#main-menu .desktop-menu > .menu-container .sub-menu li a,#side-menu .sub-menu li > a'), // An array of CSS selectors to apply this font style to dynamically
'units' => 'px', // Defaults to px
'subtitle' => false,
),
array(
'id' => 'submenu-active',
'type' => 'color',
'output' => array('#main-menu .desktop-menu > .menu-container .sub-menu .current-menu-item > a, #main-menu .desktop-menu > .menu-container .sub-menu li a:hover,#side-menu .sub-menu .current-menu-item > a,#side-menu .sub-menu li > a:hover'),
'title' => __('Header Submenu Active Item Color', EF1_THEME_NAME),
'default' => '',
'validate' => 'color',
),
array(
'id' => 'mobile-menu-background',
'type' => 'background',
'output' => array('#mobile-menu .menu-container'),
'title' => __('Mobile Menu Background Color', EF1_THEME_NAME),
'default' => '',
'validate' => 'color',
),
array(
'id' => 'mobile-menu-typography',
'type' => 'typography',
'title' => __('Mobile typography', EF1_THEME_NAME),
//'compiler' => true, // Use if you want to hook in your own CSS compiler
'google' => true, // Disable google fonts. Won't work if you haven't defined your google api key
'font-backup' => true, // Select a backup non-google font in addition to a google font
//'font-style' => false, // Includes font-style and weight. Can use font-style or font-weight to declare
//'subsets' => false, // Only appears if google is true and subsets not set to false
//'font-size' => false,
'line-height' => false,
//'word-spacing' => true, // Defaults to false
//'letter-spacing'=> true, // Defaults to false
//'color' => false,
//'preview' => false, // Disable the previewer
'all_styles' => true, // Enable all Google Font style/weight variations to be added to the page
'output' => array('#mobile-menu .menu-container ul > li a'), // An array of CSS selectors to apply this font style to dynamically
'units' => 'px', // Defaults to px
'subtitle' => false,
),
array(
'id' => 'mobile-menu-active',
'type' => 'color',
'output' => array('#mobile-menu .current-menu-item > a, #mobile-menu .menu-container ul > li a:hover'),
'title' => __('Mobile Active Item Color', EF1_THEME_NAME),
'default' => '',
'validate' => 'color',
),
array(
'id' => 'mobile-border',
'type' => 'border',
'output' => array('#mobile-menu .menu-container ul > li a'),
'title' => __('Mobile Menu Border Top Color', EF1_THEME_NAME),
'default' => '',
'all' => false,
'top' => true,
'left' => false,
'right' => false,
'bottom' => false,
),
),
);
$this->sections[] = array(
'title' => __('Social Icon', EF1_THEME_NAME),
'desc' => false,
'subsection' => true,
'icon' => 'el el-brush',
// 'submenu' => false, // Setting submenu to false on a given section will hide it from the WordPress sidebar menu!
'fields' => array(
array(
'id' => 'header_social_icon',
'type' => 'switch',
'title' => __('Header Social Icon', EF1_THEME_NAME),
'subtitle' => false,
//'options' => array('on', 'off'),
'default' => false,
),
array(
'id' => 'header-facebook',
'type' => 'text',
'title' => __('Facebook Profile URL', EF1_THEME_NAME),
'default' => '',
),
array(
'id' => 'header-twitter',
'type' => 'text',
'title' => __('Twitter Profile URL', EF1_THEME_NAME),
'default' => '',
),
array(
'id' => 'header-linkedin',
'type' => 'text',
'title' => __('Linkedin Profile URL', EF1_THEME_NAME),
'default' => '',
),
array(
'id' => 'header-social-color',
'type' => 'link_color',
'output' => array('.social_icon_header a i'),
'title' => __('Social Icon Color', EF1_THEME_NAME),
'active' => false,
),
array(
'id' => 'border-socia-icon-header',
'type' => 'border',
'output' => array('.social_icon_header:before'),
'title' => __('Left Border', EF1_THEME_NAME),
'default' => '',
'all' => false,
'top' => false,
'left' => true,
'right' => false,
'bottom' => false,
),
));
$this->sections[] = array(
'title' => __('Headings', EF1_THEME_NAME),
'desc' => false,
'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' => 'h1-typography',
'type' => 'typography',
'title' => __('H1', EF1_THEME_NAME),
//'compiler' => true, // Use if you want to hook in your own CSS compiler
'google' => true, // Disable google fonts. Won't work if you haven't defined your google api key
'font-backup' => true, // Select a backup non-google font in addition to a google font
//'font-style' => false, // Includes font-style and weight. Can use font-style or font-weight to declare
//'subsets' => false, // Only appears if google is true and subsets not set to false
//'font-size' => false,
//'word-spacing' => true, // Defaults to false
//'letter-spacing'=> true, // Defaults to false
//'color' => false,
//'preview' => false, // Disable the previewer
'all_styles' => true, // Enable all Google Font style/weight variations to be added to the page
'output' => array('h1'), // An array of CSS selectors to apply this font style to dynamically
'units' => 'px', // Defaults to px
'subtitle' => false,
),
array(
'id' => 'h2-typography',
'type' => 'typography',
'title' => __('H2', EF1_THEME_NAME),
//'compiler' => true, // Use if you want to hook in your own CSS compiler
'google' => true, // Disable google fonts. Won't work if you haven't defined your google api key
'font-backup' => true, // Select a backup non-google font in addition to a google font
//'font-style' => false, // Includes font-style and weight. Can use font-style or font-weight to declare
//'subsets' => false, // Only appears if google is true and subsets not set to false
//'font-size' => false,
//'word-spacing' => true, // Defaults to false
//'letter-spacing'=> true, // Defaults to false
//'color' => false,
//'preview' => false, // Disable the previewer
'all_styles' => true, // Enable all Google Font style/weight variations to be added to the page
'output' => array('h2'), // An array of CSS selectors to apply this font style to dynamically
'units' => 'px', // Defaults to px
'subtitle' => false,
),
array(
'id' => 'h3-typography',
'type' => 'typography',
'title' => __('H3', EF1_THEME_NAME),
//'compiler' => true, // Use if you want to hook in your own CSS compiler
'google' => true, // Disable google fonts. Won't work if you haven't defined your google api key
'font-backup' => true, // Select a backup non-google font in addition to a google font
//'font-style' => false, // Includes font-style and weight. Can use font-style or font-weight to declare
//'subsets' => false, // Only appears if google is true and subsets not set to false
//'font-size' => false,
//'word-spacing' => true, // Defaults to false
//'letter-spacing'=> true, // Defaults to false
//'color' => false,
//'preview' => false, // Disable the previewer
'all_styles' => true, // Enable all Google Font style/weight variations to be added to the page
'output' => array('h3'), // An array of CSS selectors to apply this font style to dynamically
'units' => 'px', // Defaults to px
'subtitle' => false,
),
array(
'id' => 'h4-typography',
'type' => 'typography',
'title' => __('H4', EF1_THEME_NAME),
//'compiler' => true, // Use if you want to hook in your own CSS compiler
'google' => true, // Disable google fonts. Won't work if you haven't defined your google api key
'font-backup' => true, // Select a backup non-google font in addition to a google font
//'font-style' => false, // Includes font-style and weight. Can use font-style or font-weight to declare
//'subsets' => false, // Only appears if google is true and subsets not set to false
//'font-size' => false,
//'word-spacing' => true, // Defaults to false
//'letter-spacing'=> true, // Defaults to false
//'color' => false,
//'preview' => false, // Disable the previewer
'all_styles' => true, // Enable all Google Font style/weight variations to be added to the page
'output' => array('h4'), // An array of CSS selectors to apply this font style to dynamically
'units' => 'px', // Defaults to px
'subtitle' => false,
),
array(
'id' => 'h5-typography',
'type' => 'typography',
'title' => __('H5', EF1_THEME_NAME),
//'compiler' => true, // Use if you want to hook in your own CSS compiler
'google' => true, // Disable google fonts. Won't work if you haven't defined your google api key
'font-backup' => true, // Select a backup non-google font in addition to a google font
//'font-style' => false, // Includes font-style and weight. Can use font-style or font-weight to declare
//'subsets' => false, // Only appears if google is true and subsets not set to false
//'font-size' => false,
//'word-spacing' => true, // Defaults to false
//'letter-spacing'=> true, // Defaults to false
//'color' => false,
//'preview' => false, // Disable the previewer
'all_styles' => true, // Enable all Google Font style/weight variations to be added to the page
'output' => array('h5'), // An array of CSS selectors to apply this font style to dynamically
'units' => 'px', // Defaults to px
'subtitle' => false,
),
array(
'id' => 'h6-typography',
'type' => 'typography',
'title' => __('H6', EF1_THEME_NAME),
//'compiler' => true, // Use if you want to hook in your own CSS compiler
'google' => true, // Disable google fonts. Won't work if you haven't defined your google api key
'font-backup' => true, // Select a backup non-google font in addition to a google font
//'font-style' => false, // Includes font-style and weight. Can use font-style or font-weight to declare
//'subsets' => false, // Only appears if google is true and subsets not set to false
//'font-size' => false,
//'word-spacing' => true, // Defaults to false
//'letter-spacing'=> true, // Defaults to false
//'color' => false,
//'preview' => false, // Disable the previewer
'all_styles' => true, // Enable all Google Font style/weight variations to be added to the page
'output' => array('h6'), // An array of CSS selectors to apply this font style to dynamically
'units' => 'px', // Defaults to px
'subtitle' => false,
),
),
);
$this->sections[] = array(
'title' => __('Blog', EF1_THEME_NAME),
'desc' => false,
'icon' => 'el-icon-list-alt',
// 'submenu' => false, // Setting submenu to false on a given section will hide it from the WordPress sidebar menu!
'fields' => array(
array(
'id' => 'blog_sidebar',
'type' => 'button_set',
'title' => __('Blog Sidebar', EF1_THEME_NAME),
//Must provide key => value pairs for select options
'options' => array(
'1' => 'Left Sidebar',
'2' => 'Right Sidebar',
'3' => 'No Sidebar'
),
'default' => '2',
),
array(
'id' => 'widget-title-typography',
'type' => 'typography',
'title' => __('Widget Title Typography', EF1_THEME_NAME),
//'compiler' => true, // Use if you want to hook in your own CSS compiler
'google' => true, // Disable google fonts. Won't work if you haven't defined your google api key
'font-backup' => true, // Select a backup non-google font in addition to a google font
//'font-style' => false, // Includes font-style and weight. Can use font-style or font-weight to declare
//'subsets' => false, // Only appears if google is true and subsets not set to false
//'font-size' => false,
//'word-spacing' => true, // Defaults to false
//'letter-spacing'=> true, // Defaults to false
//'color' => false,
//'preview' => false, // Disable the previewer
'all_styles' => true, // Enable all Google Font style/weight variations to be added to the page
'output' => array('.widget h3'), // An array of CSS selectors to apply this font style to dynamically
'units' => 'px', // Defaults to px
'subtitle' => false,
),
array(
'id' => 'widget-typography',
'type' => 'typography',
'title' => __('Widget Typography', EF1_THEME_NAME),
//'compiler' => true, // Use if you want to hook in your own CSS compiler
'google' => true, // Disable google fonts. Won't work if you haven't defined your google api key
'font-backup' => true, // Select a backup non-google font in addition to a google font
//'font-style' => false, // Includes font-style and weight. Can use font-style or font-weight to declare
//'subsets' => false, // Only appears if google is true and subsets not set to false
//'font-size' => false,
//'word-spacing' => true, // Defaults to false
//'letter-spacing'=> true, // Defaults to false
//'color' => false,
//'preview' => false, // Disable the previewer
'all_styles' => true, // Enable all Google Font style/weight variations to be added to the page
'output' => array('.widget'), // An array of CSS selectors to apply this font style to dynamically
'units' => 'px', // Defaults to px
'subtitle' => false,
),
array(
'id' => 'widget-border',
'type' => 'border',
'output' => array('.widget ul li a'),
'title' => __('Widget Border Bottom Color', EF1_THEME_NAME),
'default' => '',
'all' => false,
'top' => false,
'left' => false,
'right' => false,
'bottom' => true,
),
array(
'id' => 'wp_pages_link',
'type' => 'switch',
'title' => __('Wordpress Pages Link', EF1_THEME_NAME),
'subtitle' => false,
//'options' => array('on', 'off'),
'default' => true,
),
array(
'id' => 'author_desc',
'type' => 'switch',
'title' => __('Author Description', EF1_THEME_NAME),
'subtitle' => false,
//'options' => array('on', 'off'),
'default' => true,
),
array(
'id' => 'post_nav',
'type' => 'switch',
'title' => __('Post Navigation', EF1_THEME_NAME),
'subtitle' => false,
//'options' => array('on', 'off'),
'default' => true,
),
array(
'id' => 'single_tag',
'type' => 'switch',
'title' => __('Tags', EF1_THEME_NAME),
'subtitle' => false,
//'options' => array('on', 'off'),
'default' => true,
),
array(
'id' => 'more_button',
'type' => 'switch',
'title' => __('More Button', EF1_THEME_NAME),
'subtitle' => false,
//'options' => array('on', 'off'),
'default' => true,
),
array(
'id' => 'category_details',
'type' => 'switch',
'title' => __('Category Details', EF1_THEME_NAME),
'subtitle' => __('Date, Post by and Comments Number', EF1_THEME_NAME),
//'options' => array('on', 'off'),
'default' => true,
),
),
);
$this->sections[] = array(
'title' => __('Footer', EF1_THEME_NAME),
'desc' => false,
'icon' => 'el-icon-wrench',
// 'submenu' => false, // Setting submenu to false on a given section will hide it from the WordPress sidebar menu!
'fields' => array(
array(
'id' => 'footer-background',
'type' => 'background',
'output' => array('#footer-2'),
'title' => __('Footer Background Color', EF1_THEME_NAME),
'default' => '',
'validate' => 'background',
),
array(
'id' => 'footer-text',
'type' => 'editor',
'title' => __('Footer Text', EF1_THEME_NAME),
'default' => '@2014 Yours. All Right Reserved.',
),
array(
'id' => 'footer-typography',
'type' => 'typography',
'title' => __('Footer typography', EF1_THEME_NAME),
//'compiler' => true, // Use if you want to hook in your own CSS compiler
'google' => true, // Disable google fonts. Won't work if you haven't defined your google api key
'font-backup' => true, // Select a backup non-google font in addition to a google font
//'font-style' => false, // Includes font-style and weight. Can use font-style or font-weight to declare
//'subsets' => false, // Only appears if google is true and subsets not set to false
//'font-size' => false,
'line-height' => false,
//'word-spacing' => true, // Defaults to false
//'letter-spacing'=> true, // Defaults to false
//'color' => false,
//'preview' => false, // Disable the previewer
'all_styles' => true, // Enable all Google Font style/weight variations to be added to the page
'output' => array('#footer-2'), // An array of CSS selectors to apply this font style to dynamically
'units' => 'px', // Defaults to px
'subtitle' => false,
),
array(
'id' => 'footer-facebook',
'type' => 'text',
'title' => __('Facebook Profile URL', EF1_THEME_NAME),
'default' => '',
),
array(
'id' => 'footer-twitter',
'type' => 'text',
'title' => __('Twitter Profile URL', EF1_THEME_NAME),
'default' => '',
),
array(
'id' => 'footer-linkedin',
'type' => 'text',
'title' => __('Linkedin Profile URL', EF1_THEME_NAME),
'default' => '',
),
array(
'id' => 'footer-social-color',
'type' => 'link_color',
'output' => array('#footer-2 a.social-1 '),
'title' => __('Social Icon Color', EF1_THEME_NAME),
'active' => false,
),
),
);
$this->sections[] = array(
'title' => __('Import / Export', EF1_THEME_NAME),
'desc' => __('Import and Export your Redux Framework settings from file, text or URL.', EF1_THEME_NAME),
'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',
);
$this->sections[] = array(
'icon' => 'el-icon-info-sign',
'title' => __('Theme Information', EF1_THEME_NAME),
'desc' => __('<p class="description">This is the Description. Again HTML is allowed</p>', EF1_THEME_NAME),
'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', EF1_THEME_NAME),
'content' => nl2br(file_get_contents(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', EF1_THEME_NAME),
'content' => __('<p>This is the tab content, HTML is allowed.</p>', EF1_THEME_NAME)
);
$this->args['help_tabs'][] = array(
'id' => 'redux-help-tab-2',
'title' => __('Theme Information 2', EF1_THEME_NAME),
'content' => __('<p>This is the tab content, HTML is allowed.</p>', EF1_THEME_NAME)
);
// Set the help sidebar
$this->args['help_sidebar'] = __('<p>This is the sidebar content, HTML is allowed.</p>', EF1_THEME_NAME);
}
/**
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' => 'smof_data', // This is where your data is stored in the database and also becomes your global variable name.
'display_name' => $theme->get('Name'), // 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' => __('Theme Options', EF1_THEME_NAME),
'page_title' => __('Theme Options', EF1_THEME_NAME),
// 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' => true, // Use a asynchronous font on the front end or font string
//'disable_google_fonts_link' => true, // Disable this in case you want to create your own google fonts loader
'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' => true, // 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' => '', // 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'
);
// Panel Intro text -> before the form
if (!isset($this->args['global_variable']) || $this->args['global_variable'] !== false) {
if (!empty($this->args['global_variable'])) {
$v = $this->args['global_variable'];
} else {
$v = str_replace('-', '_', $this->args['opt_name']);
}
$this->args['intro_text'] = sprintf(false, $v);
} else {
$this->args['intro_text'] = false;
}
// Add content after the form.
$this->args['footer_text'] = __('<p>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.</p>', EF1_THEME_NAME);
}
}
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 '<br/>';
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;