Used within different fields. Simply examples. Search for ACTUAL DECLARATION for field examples * */ $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' ); } // 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 ); } } } } /** * ---> SET ARGUMENTS * All the possible arguments for Redux. * For full documentation on arguments, please refer to: https://github.com/ReduxFramework/ReduxFramework/wiki/Arguments * */ $theme = wp_get_theme(); // For use with some settings. Not necessary. $args = array( // TYPICAL -> Change these values as you need/desire 'opt_name' => $opt_name, // 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' => __( 'Sample Options', 'redux-framework-demo' ), 'page_title' => __( 'Sample Options', 'redux-framework-demo' ), // 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' => '', // Set it you want google fonts to update weekly. A google_api_key value is required. 'google_update_weekly' => false, // 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 //'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 'admin_bar_icon' => 'dashicons-portfolio', // Choose an icon for the admin bar menu 'admin_bar_priority' => 50, // Choose an priority for the admin bar menu 'global_variable' => '', // Set a different name for your global variable other than the opt_name 'dev_mode' => true, // Show the time the page took to load, etc 'update_notice' => true, // If dev_mode is enabled, will notify developer of updated versions available in the GitHub Repo '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' => 'redux_demo', // Page slug used to denote the panel, will be based off page title then menu title then opt_name if not provided '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! 'use_cdn' => true, // If you prefer not to use the CDN for Select2, Ace Editor, and others, you may download the Redux Vendor Support plugin yourself and run locally or embed it in your code. // HINTS 'hints' => array( 'icon' => 'el el-question-sign', 'icon_position' => 'right', 'icon_color' => 'lightgray', 'icon_size' => 'normal', 'tip_style' => array( 'color' => 'red', '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 -> Setup custom links in the admin bar menu as external items. $args['admin_bar_links'][] = array( 'id' => 'redux-docs', 'href' => 'http://docs.reduxframework.com/', 'title' => __( 'Documentation', 'redux-framework-demo' ), ); $args['admin_bar_links'][] = array( //'id' => 'redux-support', 'href' => 'https://github.com/ReduxFramework/redux-framework/issues', 'title' => __( 'Support', 'redux-framework-demo' ), ); $args['admin_bar_links'][] = array( 'id' => 'redux-extensions', 'href' => 'reduxframework.com/extensions', 'title' => __( 'Extensions', 'redux-framework-demo' ), ); // SOCIAL ICONS -> Setup custom links in the footer for quick links in your panel footer icons. $args['share_icons'][] = array( 'url' => 'https://github.com/ReduxFramework/ReduxFramework', 'title' => 'Visit us on GitHub', 'icon' => 'el el-github' //'img' => '', // You can use icon OR img. IMG needs to be a full URL. ); $args['share_icons'][] = array( 'url' => 'https://www.facebook.com/pages/Redux-Framework/243141545850368', 'title' => 'Like us on Facebook', 'icon' => 'el el-facebook' ); $args['share_icons'][] = array( 'url' => 'http://twitter.com/reduxframework', 'title' => 'Follow us on Twitter', 'icon' => 'el el-twitter' ); $args['share_icons'][] = array( 'url' => 'http://www.linkedin.com/company/redux-framework', 'title' => 'Find us on LinkedIn', 'icon' => 'el el-linkedin' ); // Panel Intro text -> before the form if ( ! isset( $args['global_variable'] ) || $args['global_variable'] !== false ) { if ( ! empty( $args['global_variable'] ) ) { $v = $args['global_variable']; } else { $v = str_replace( '-', '_', $args['opt_name'] ); } $args['intro_text'] = 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: $%1$s
', 'redux-framework-demo' ), $v ); } else { $args['intro_text'] = __( '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.
', 'redux-framework-demo' ); } // Add content after the form. $args['footer_text'] = __( '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.
', 'redux-framework-demo' ); Redux::setArgs( $opt_name, $args ); /* * ---> END ARGUMENTS */ /* * ---> START HELP TABS */ $tabs = array( array( 'id' => 'redux-help-tab-1', 'title' => __( 'Theme Information 1', 'redux-framework-demo' ), 'content' => __( 'This is the tab content, HTML is allowed.
', 'redux-framework-demo' ) ), array( 'id' => 'redux-help-tab-2', 'title' => __( 'Theme Information 2', 'redux-framework-demo' ), 'content' => __( 'This is the tab content, HTML is allowed.
', 'redux-framework-demo' ) ) ); Redux::setHelpTab( $opt_name, $tabs ); // Set the help sidebar $content = __( 'This is the sidebar content, HTML is allowed.
', 'redux-framework-demo' ); Redux::setHelpSidebar( $opt_name, $content ); /* * <--- END HELP TABS */ /* * * ---> START 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 Redux::setSection( $opt_name, array( 'title' => __( 'Basic Fields', 'redux-framework-demo' ), 'id' => 'basic', 'desc' => __( 'These are really basic fields!', 'redux-framework-demo' ), 'customizer_width' => '400px', 'icon' => 'el el-home' ) ); Redux::setSection( $opt_name, array( 'title' => __( 'Checkbox', 'redux-framework-demo' ), 'id' => 'basic-checkbox', 'subsection' => true, 'customizer_width' => '450px', 'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . 'docs.reduxframework.com/core/fields/checkbox/', 'fields' => array( array( 'id' => 'opt-checkbox', 'type' => 'checkbox', 'title' => __( 'Checkbox Option', 'redux-framework-demo' ), 'subtitle' => __( 'No validation can be done on this field type', 'redux-framework-demo' ), 'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ), 'default' => '1'// 1 = on | 0 = off ), array( 'id' => 'opt-multi-check', 'type' => 'checkbox', 'title' => __( 'Multi Checkbox Option', 'redux-framework-demo' ), 'subtitle' => __( 'No validation can be done on this field type', 'redux-framework-demo' ), 'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ), //Must provide key => value pairs for multi checkbox options 'options' => array( '1' => 'Opt 1', '2' => 'Opt 2', '3' => 'Opt 3' ), //See how std has changed? you also don't need to specify opts that are 0. 'default' => array( '1' => '1', '2' => '0', '3' => '0' ) ), array( 'id' => 'opt-checkbox-data', 'type' => 'checkbox', 'title' => __( 'Multi Checkbox Option (with menu data)', 'redux-framework-demo' ), 'subtitle' => __( 'No validation can be done on this field type', 'redux-framework-demo' ), 'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ), 'data' => 'menu' ), array( 'id' => 'opt-checkbox-sidebar', 'type' => 'checkbox', 'title' => __( 'Multi Checkbox Option (with sidebar data)', 'redux-framework-demo' ), 'subtitle' => __( 'No validation can be done on this field type', 'redux-framework-demo' ), 'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ), 'data' => 'sidebars' ), ) ) ); Redux::setSection( $opt_name, array( 'title' => __( 'Radio', 'redux-framework-demo' ), 'id' => 'basic-Radio', 'subsection' => true, 'customizer_width' => '500px', 'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . 'docs.reduxframework.com/core/fields/radio/', 'fields' => array( array( 'id' => 'opt-radio', 'type' => 'radio', 'title' => __( 'Radio Option', 'redux-framework-demo' ), 'subtitle' => __( 'No validation can be done on this field type', 'redux-framework-demo' ), 'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ), //Must provide key => value pairs for radio options 'options' => array( '1' => 'Opt 1', '2' => 'Opt 2', '3' => 'Opt 3' ), 'default' => '2' ), array( 'id' => 'opt-radio-data', 'type' => 'radio', 'title' => __( 'Radio Option w/ Menu Data', 'redux-framework-demo' ), 'subtitle' => __( 'No validation can be done on this field type', 'redux-framework-demo' ), 'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ), 'data' => 'menu' ), ) ) ); Redux::setSection( $opt_name, array( 'title' => __( 'Sortable', 'redux-framework-demo' ), 'id' => 'basic-Sortable', 'subsection' => true, 'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . 'docs.reduxframework.com/core/fields/sortable/', 'fields' => array( array( 'id' => 'opt-sortable', 'type' => 'sortable', 'title' => __( 'Sortable Text Option', 'redux-framework-demo' ), 'subtitle' => __( 'Define and reorder these however you want.', 'redux-framework-demo' ), 'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ), 'label' => true, 'options' => array( 'Text One' => 'Item 1', 'Text Two' => 'Item 2', 'Text Three' => 'Item 3', ) ), array( 'id' => 'opt-check-sortable', 'type' => 'sortable', 'mode' => 'checkbox', // checkbox or text 'title' => __( 'Sortable Text Option', 'redux-framework-demo' ), 'subtitle' => __( 'Define and reorder these however you want.', 'redux-framework-demo' ), 'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ), 'options' => array( 'cb1' => 'Checkbox One', 'cb2' => 'Checkbox Two', 'cb3' => 'Checkbox Three', ), 'default' => array( 'cb1' => false, 'cb2' => true, 'cb3' => false, ) ), ) ) ); Redux::setSection( $opt_name, array( 'title' => __( 'Text', 'redux-framework-demo' ), 'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . 'docs.reduxframework.com/core/fields/text/', 'id' => 'basic-Text', 'subsection' => true, 'customizer_width' => '700px', 'fields' => array( array( 'id' => 'text-example', 'type' => 'text', 'title' => __( 'Text Field', 'redux-framework-demo' ), 'subtitle' => __( 'Subtitle', 'redux-framework-demo' ), 'desc' => __( 'Field Description', 'redux-framework-demo' ), 'default' => 'Default Text', ), array( 'id' => 'text-example-hint', 'type' => 'text', 'title' => __( 'Text Field w/ Hint', 'redux-framework-demo' ), 'subtitle' => __( 'Subtitle', 'redux-framework-demo' ), 'desc' => __( 'Field Description', 'redux-framework-demo' ), 'default' => 'Default Text', 'text_hint' => array( 'title' => 'Hint Title', 'content' => 'Hint content about this field!' ) ), array( 'id' => 'text-placeholder', 'type' => 'text', 'title' => __( 'Text Field', 'redux-framework-demo' ), 'subtitle' => __( 'Subtitle', 'redux-framework-demo' ), 'desc' => __( 'Field Description', 'redux-framework-demo' ), 'placeholder' => 'Placeholder Text', ), ) ) ); Redux::setSection( $opt_name, array( 'title' => __( 'Multi Text', 'redux-framework-demo' ), 'id' => 'basic-Multi Text', 'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . 'docs.reduxframework.com/core/fields/multi-text/', 'subsection' => true, 'fields' => array( array( 'id' => 'opt-multitext', 'type' => 'multi_text', 'title' => __( 'Multi Text Option', 'redux-framework-demo' ), 'subtitle' => __( 'Field subtitle', 'redux-framework-demo' ), 'desc' => __( 'Field Decription', 'redux-framework-demo' ), ), ) ) ); Redux::setSection( $opt_name, array( 'title' => __( 'Password', 'redux-framework-demo' ), 'id' => 'basic-Password', 'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . 'docs.reduxframework.com/core/fields/password/', 'subsection' => true, 'fields' => array( array( 'id' => 'password', 'type' => 'password', 'username' => true, 'title' => 'Password Field', //'placeholder' => array( // 'username' => 'Username', // 'password' => 'Password', //) ) ) ) ); Redux::setSection( $opt_name, array( 'title' => __( 'Textarea', 'redux-framework-demo' ), 'id' => 'basic-Textarea', 'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . 'docs.reduxframework.com/core/fields/textarea/', 'subsection' => true, 'fields' => array( array( 'id' => 'opt-textarea', 'type' => 'textarea', 'title' => __( 'Textarea Option - HTML Validated Custom', 'redux-framework-demo' ), 'subtitle' => __( 'Subtitle', 'redux-framework-demo' ), 'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ), 'default' => 'Default Text', ) ) ) ); // -> START Editors Redux::setSection( $opt_name, array( 'title' => __( 'Editors', 'redux-framework-demo' ), 'id' => 'editor', 'customizer_width' => '500px', 'icon' => 'el el-edit', ) ); Redux::setSection( $opt_name, array( 'title' => __( 'WordPress Editor', 'redux-framework-demo' ), 'id' => 'editor-wordpress', //'icon' => 'el el-home' 'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . 'docs.reduxframework.com/core/fields/editor/', 'subsection' => true, 'fields' => array( array( 'id' => 'opt-editor', 'type' => 'editor', 'title' => __( 'Editor', 'redux-framework-demo' ), 'subtitle' => __( 'Use any of the features of WordPress editor inside your panel!', 'redux-framework-demo' ), 'default' => 'Powered by Redux Framework.', ), array( 'id' => 'opt-editor-tiny', 'type' => 'editor', 'title' => __( 'Editor w/o Media Button', 'redux-framework-demo' ), 'default' => 'Powered by Redux Framework.', 'args' => array( 'wpautop' => false, 'media_buttons' => false, 'textarea_rows' => 5, //'tabindex' => 1, //'editor_css' => '', 'teeny' => false, //'tinymce' => array(), 'quicktags' => false, ) ), array( 'id' => 'opt-editor-full', 'type' => 'editor', 'title' => __( 'Editor - Full Width', 'redux-framework-demo' ), 'full_width' => true ), ), 'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . 'docs.reduxframework.com/core/fields/editor/', ) ); Redux::setSection( $opt_name, array( 'title' => __( 'ACE Editor', 'redux-framework-demo' ), 'id' => 'editor-ace', //'icon' => 'el el-home' 'subsection' => true, 'desc' => __( 'For full documentation on the this field, visit: ', 'redux-framework-demo' ) . 'docs.reduxframework.com/core/fields/ace-editor/', 'fields' => array( array( 'id' => 'opt-ace-editor-css', 'type' => 'ace_editor', 'title' => __( 'CSS Code', 'redux-framework-demo' ), 'subtitle' => __( 'Paste your CSS code here.', 'redux-framework-demo' ), 'mode' => 'css', 'theme' => 'monokai', 'desc' => 'Possible modes can be found at ' . 'http://' . 'ace.c9.io/.', 'default' => "#header{\n margin: 0 auto;\n}" ), array( 'id' => 'opt-ace-editor-js', 'type' => 'ace_editor', 'title' => __( 'JS Code', 'redux-framework-demo' ), 'subtitle' => __( 'Paste your JS code here.', 'redux-framework-demo' ), 'mode' => 'javascript', 'theme' => 'chrome', 'desc' => 'Possible modes can be found at ' . 'http://' . 'ace.c9.io/.', 'default' => "jQuery(document).ready(function(){\n\n});" ), array( 'id' => 'opt-ace-editor-php', 'type' => 'ace_editor', 'full_width' => true, 'title' => __( 'PHP Code', 'redux-framework-demo' ), 'subtitle' => __( 'Paste your PHP code here.', 'redux-framework-demo' ), 'mode' => 'php', 'theme' => 'chrome', 'desc' => 'Possible modes can be found at ' . 'http://' . 'ace.c9.io/.', 'default' => ' START Color Selection Redux::setSection( $opt_name, array( 'title' => __( 'Color Selection', 'redux-framework-demo' ), 'id' => 'color', 'desc' => __( '', 'redux-framework-demo' ), 'icon' => 'el el-brush' ) ); Redux::setSection( $opt_name, array( 'title' => __( 'Color', 'redux-framework-demo' ), 'id' => 'color-Color', 'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . 'docs.reduxframework.com/core/fields/color/', 'subsection' => true, 'fields' => array( array( 'id' => 'opt-color-title', 'type' => 'color', 'output' => array( '.site-title' ), 'title' => __( 'Site Title Color', 'redux-framework-demo' ), 'subtitle' => __( 'Pick a title color for the theme (default: #000).', 'redux-framework-demo' ), 'default' => '#000000', ), array( 'id' => 'opt-color-footer', 'type' => 'color', 'title' => __( 'Footer Background Color', 'redux-framework-demo' ), 'subtitle' => __( 'Pick a background color for the footer (default: #dd9933).', 'redux-framework-demo' ), 'default' => '#dd9933', 'validate' => 'color', ), ), ) ); Redux::setSection( $opt_name, array( 'title' => __( 'Color Gradient', 'redux-framework-demo' ), 'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . 'docs.reduxframework.com/core/fields/color-gradient/', 'id' => 'color-gradient', 'subsection' => true, 'fields' => array( array( 'id' => 'opt-color-header', 'type' => 'color_gradient', 'title' => __( 'Header Gradient Color Option', 'redux-framework-demo' ), 'subtitle' => __( 'Only color validation can be done on this field type', 'redux-framework-demo' ), 'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ), 'default' => array( 'from' => '#1e73be', 'to' => '#00897e' ) ), ) ) ); Redux::setSection( $opt_name, array( 'title' => __( 'Color RGBA', 'redux-framework-demo' ), 'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . 'docs.reduxframework.com/core/fields/color-rgba/', 'id' => 'color-rgba', 'subsection' => true, 'fields' => array( array( 'id' => 'opt-color-rgba', 'type' => 'color_rgba', 'title' => __( 'Color RGBA', 'redux-framework-demo' ), 'subtitle' => __( 'Gives you the RGBA color.', 'redux-framework-demo' ), 'default' => array( 'color' => '#7e33dd', 'alpha' => '.8' ), //'output' => array( 'body' ), 'mode' => 'background', //'validate' => 'colorrgba', ), ) ) ); Redux::setSection( $opt_name, array( 'title' => __( 'Link Color', 'redux-framework-demo' ), 'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . 'docs.reduxframework.com/core/fields/link-color/', 'id' => 'color-link', 'subsection' => true, 'fields' => array( array( 'id' => 'opt-link-color', 'type' => 'link_color', 'title' => __( 'Links Color Option', 'redux-framework-demo' ), 'subtitle' => __( 'Only color validation can be done on this field type', 'redux-framework-demo' ), 'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ), //'regular' => false, // Disable Regular Color //'hover' => false, // Disable Hover Color //'active' => false, // Disable Active Color //'visited' => true, // Enable Visited Color 'default' => array( 'regular' => '#aaa', 'hover' => '#bbb', 'active' => '#ccc', ) ), ) ) ); Redux::setSection( $opt_name, array( 'title' => __( 'Palette Colors', 'redux-framework-demo' ), 'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . 'docs.reduxframework.com/core/fields/palette-color/', 'id' => 'color-palette', 'subsection' => true, 'fields' => array( array( 'id' => 'opt-palette-color', 'type' => 'palette', 'title' => __( 'Palette Color Option', 'redux-framework-demo' ), 'subtitle' => __( 'Only color validation can be done on this field type', 'redux-framework-demo' ), 'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ), 'default' => 'red', 'palettes' => array( 'red' => array( '#ef9a9a', '#f44336', '#ff1744', ), 'pink' => array( '#fce4ec', '#f06292', '#e91e63', '#ad1457', '#f50057', ), 'cyan' => array( '#e0f7fa', '#80deea', '#26c6da', '#0097a7', '#00e5ff', ), ) ), ) ) ); // -> START Design Fields Redux::setSection( $opt_name, array( 'title' => __( 'Design Fields', 'redux-framework-demo' ), 'id' => 'design', 'desc' => __( '', 'redux-framework-demo' ), 'icon' => 'el el-wrench' ) ); Redux::setSection( $opt_name, array( 'title' => __( 'Background', 'redux-framework-demo' ), 'id' => 'design-background', 'subsection' => true, 'fields' => array( array( 'id' => 'opt-background', 'type' => 'background', 'output' => array( 'body' ), 'title' => __( 'Body Background', 'redux-framework-demo' ), 'subtitle' => __( 'Body background with image, color, etc.', 'redux-framework-demo' ), //'default' => '#FFFFFF', ), ), 'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . 'docs.reduxframework.com/core/fields/background/', ) ); Redux::setSection( $opt_name, array( 'title' => __( 'Border', 'redux-framework-demo' ), 'id' => 'design-border', 'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . 'docs.reduxframework.com/core/fields/border/', 'subsection' => true, 'fields' => array( array( 'id' => 'opt-header-border', 'type' => 'border', 'title' => __( 'Header Border Option', 'redux-framework-demo' ), 'subtitle' => __( 'Only color validation can be done on this field type', 'redux-framework-demo' ), 'output' => array( '.site-header' ), // An array of CSS selectors to apply this font style to 'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ), 'default' => array( 'border-color' => '#1e73be', 'border-style' => 'solid', 'border-top' => '3px', 'border-right' => '3px', 'border-bottom' => '3px', 'border-left' => '3px' ), ), array( 'id' => 'opt-header-border-expanded', 'type' => 'border', 'title' => __( 'Header Border Option', 'redux-framework-demo' ), 'subtitle' => __( 'Only color validation can be done on this field type', 'redux-framework-demo' ), 'output' => array( '.site-header' ), 'all' => false, // An array of CSS selectors to apply this font style to 'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ), 'default' => array( 'border-color' => '#1e73be', 'border-style' => 'solid', 'border-top' => '3px', 'border-right' => '3px', 'border-bottom' => '3px', 'border-left' => '3px' ) ), ) ) ); Redux::setSection( $opt_name, array( 'title' => __( 'Dimensions', 'redux-framework-demo' ), 'id' => 'design-dimensions', 'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . 'docs.reduxframework.com/core/fields/dimensions/', 'subsection' => true, 'fields' => array( array( 'id' => 'opt-dimensions', 'type' => 'dimensions', 'units' => array( 'em', 'px', '%' ), // You can specify a unit value. Possible: px, em, % 'units_extended' => 'true', // Allow users to select any type of unit 'title' => __( 'Dimensions (Width/Height) Option', 'redux-framework-demo' ), 'subtitle' => __( 'Allow your users to choose width, height, and/or unit.', 'redux-framework-demo' ), 'desc' => __( 'You can enable or disable any piece of this field. Width, Height, or Units.', 'redux-framework-demo' ), 'default' => array( 'width' => 200, 'height' => 100, ) ), array( 'id' => 'opt-dimensions-width', 'type' => 'dimensions', 'units' => array( 'em', 'px', '%' ), // You can specify a unit value. Possible: px, em, % 'units_extended' => 'true', // Allow users to select any type of unit 'title' => __( 'Dimensions (Width) Option', 'redux-framework-demo' ), 'subtitle' => __( 'Allow your users to choose width, height, and/or unit.', 'redux-framework-demo' ), 'desc' => __( 'You can enable or disable any piece of this field. Width, Height, or Units.', 'redux-framework-demo' ), 'height' => false, 'default' => array( 'width' => 200, 'height' => 100, ) ), ) ) ); Redux::setSection( $opt_name, array( 'title' => __( 'Spacing', 'redux-framework-demo' ), 'id' => 'design-spacing', 'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . 'docs.reduxframework.com/core/fields/spacing/', 'subsection' => true, 'fields' => array( array( 'id' => 'opt-spacing', 'type' => 'spacing', 'output' => array( '.site-header' ), // An array of CSS selectors to apply this font style to 'mode' => 'margin', // absolute, padding, margin, defaults to padding 'all' => true, // Have one field that applies to all //'top' => false, // Disable the top //'right' => false, // Disable the right //'bottom' => false, // Disable the bottom //'left' => false, // Disable the left //'units' => 'em', // You can specify a unit value. Possible: px, em, % //'units_extended'=> 'true', // Allow users to select any type of unit //'display_units' => 'false', // Set to false to hide the units if the units are specified 'title' => __( 'Padding/Margin Option', 'redux-framework-demo' ), 'subtitle' => __( 'Allow your users to choose the spacing or margin they want.', 'redux-framework-demo' ), 'desc' => __( 'You can enable or disable any piece of this field. Top, Right, Bottom, Left, or Units.', 'redux-framework-demo' ), 'default' => array( 'margin-top' => '1px', 'margin-right' => '2px', 'margin-bottom' => '3px', 'margin-left' => '4px' ) ), array( 'id' => 'opt-spacing-expanded', 'type' => 'spacing', // An array of CSS selectors to apply this font style to 'mode' => 'margin', // absolute, padding, margin, defaults to padding 'all' => false, // Have one field that applies to all //'top' => false, // Disable the top //'right' => false, // Disable the right //'bottom' => false, // Disable the bottom //'left' => false, // Disable the left 'units' => array( 'em', 'px', '%' ), // You can specify a unit value. Possible: px, em, % 'units_extended' => 'true', // Allow users to select any type of unit //'display_units' => 'false', // Set to false to hide the units if the units are specified 'title' => __( 'Padding/Margin Option', 'redux-framework-demo' ), 'subtitle' => __( 'Allow your users to choose the spacing or margin they want.', 'redux-framework-demo' ), 'desc' => __( 'You can enable or disable any piece of this field. Top, Right, Bottom, Left, or Units.', 'redux-framework-demo' ), 'default' => array( 'margin-top' => '1px', 'margin-right' => '2px', 'margin-bottom' => '3px', 'margin-left' => '4px' ) ), ) ) ); // -> START Media Uploads Redux::setSection( $opt_name, array( 'title' => __( 'Media Uploads', 'redux-framework-demo' ), 'id' => 'media', 'desc' => __( '', 'redux-framework-demo' ), 'icon' => 'el el-picture' ) ); Redux::setSection( $opt_name, array( 'title' => __( 'Gallery', 'redux-framework-demo' ), 'id' => 'media-gallery', 'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . 'docs.reduxframework.com/core/fields/gallery/', 'subsection' => true, 'fields' => array( array( 'id' => 'opt-gallery', 'type' => 'gallery', 'title' => __( 'Add/Edit Gallery', 'redux-framework-demo' ), 'subtitle' => __( 'Create a new Gallery by selecting existing or uploading new images using the WordPress native uploader', 'redux-framework-demo' ), 'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ), ), ) ) ); Redux::setSection( $opt_name, array( 'title' => __( 'Media', 'redux-framework-demo' ), 'id' => 'media-media', 'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . 'docs.reduxframework.com/core/fields/media/', 'subsection' => true, 'fields' => array( array( 'id' => 'opt-media', 'type' => 'media', 'url' => true, 'title' => __( 'Media w/ URL', 'redux-framework-demo' ), 'compiler' => 'true', //'mode' => false, // Can be set to false to allow any media type, or can also be set to any mime type. 'desc' => __( 'Basic media uploader with disabled URL input field.', 'redux-framework-demo' ), 'subtitle' => __( 'Upload any media using the WordPress native uploader', 'redux-framework-demo' ), 'default' => array( 'url' => 'https://s.wordpress.org/style/images/codeispoetry.png' ), //'hint' => array( // 'title' => 'Hint Title', // 'content' => 'This is a hint for the media field with a Title.', //) ), array( 'id' => 'media-no-url', 'type' => 'media', 'title' => __( 'Media w/o URL', 'redux-framework-demo' ), 'desc' => __( 'This represents the minimalistic view. It does not have the preview box or the display URL in an input box. ', 'redux-framework-demo' ), 'subtitle' => __( 'Upload any media using the WordPress native uploader', 'redux-framework-demo' ), ), array( 'id' => 'media-no-preview', 'type' => 'media', 'preview' => false, 'title' => __( 'Media No Preview', 'redux-framework-demo' ), 'desc' => __( 'This represents the minimalistic view. It does not have the preview box or the display URL in an input box. ', 'redux-framework-demo' ), 'subtitle' => __( 'Upload any media using the WordPress native uploader', 'redux-framework-demo' ), 'hint' => array( 'title' => 'Test', 'content' => 'This is a hint tool-tip for the webFonts field.full_width
False', 'redux-framework-demo' ),
'subtitle' => __( 'Subtitle', 'redux-framework-demo' ),
'desc' => __( 'Description', 'redux-framework-demo' ),
'content' => $sampleHTML,
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Advanced Features', 'redux-framework-demo' ),
'icon' => 'el el-thumbs-up',
// 'submenu' => false, // Setting submenu to false on a given section will hide it from the WordPress sidebar menu!
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Callback', 'redux-framework-demo' ),
'id' => 'additional-callback',
'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . 'docs.reduxframework.com/core/fields/callback/',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-custom-callback',
'type' => 'callback',
'title' => __( 'Custom Field Callback', 'redux-framework-demo' ),
'subtitle' => __( 'This is a completely unique field type', 'redux-framework-demo' ),
'desc' => __( 'This is created with a callback function, so anything goes in this field. Make sure to define the function though.', 'redux-framework-demo' ),
'callback' => 'redux_my_custom_field'
),
)
) );
// -> START Validation
Redux::setSection( $opt_name, array(
'title' => __( 'Field Validation', 'redux-framework-demo' ),
'id' => 'validation',
'desc' => __( 'For full documentation on validation, visit: ', 'redux-framework-demo' ) . 'docs.reduxframework.com/core/the-basics/validation/',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-text-email',
'type' => 'text',
'title' => __( 'Text Option - Email Validated', 'redux-framework-demo' ),
'subtitle' => __( 'This is a little space under the Field Title in the Options table, additional info is good in here.', 'redux-framework-demo' ),
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
'validate' => 'email',
'msg' => 'custom error message',
'default' => 'test@test.com',
),
array(
'id' => 'opt-text-post-type',
'type' => 'text',
'title' => __( 'Text Option with Data Attributes', 'redux-framework-demo' ),
'subtitle' => __( 'You can also pass an options array if you want. Set the default to whatever you like.', 'redux-framework-demo' ),
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
'data' => 'post_type',
),
array(
'id' => 'opt-multi-text',
'type' => 'multi_text',
'title' => __( 'Multi Text Option - Color Validated', 'redux-framework-demo' ),
'validate' => 'color',
'subtitle' => __( 'If you enter an invalid color it will be removed. Try using the text "blue" as a color. ;)', 'redux-framework-demo' ),
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' )
),
array(
'id' => 'opt-text-url',
'type' => 'text',
'title' => __( 'Text Option - URL Validated', 'redux-framework-demo' ),
'subtitle' => __( 'This must be a URL.', 'redux-framework-demo' ),
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
'validate' => 'url',
'default' => 'http://reduxframework.com',
),
array(
'id' => 'opt-text-numeric',
'type' => 'text',
'title' => __( 'Text Option - Numeric Validated', 'redux-framework-demo' ),
'subtitle' => __( 'This must be numeric.', 'redux-framework-demo' ),
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
'validate' => 'numeric',
'default' => '0',
),
array(
'id' => 'opt-text-comma-numeric',
'type' => 'text',
'title' => __( 'Text Option - Comma Numeric Validated', 'redux-framework-demo' ),
'subtitle' => __( 'This must be a comma separated string of numerical values.', 'redux-framework-demo' ),
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
'validate' => 'comma_numeric',
'default' => '0',
),
array(
'id' => 'opt-text-no-special-chars',
'type' => 'text',
'title' => __( 'Text Option - No Special Chars Validated', 'redux-framework-demo' ),
'subtitle' => __( 'This must be a alpha numeric only.', 'redux-framework-demo' ),
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
'validate' => 'no_special_chars',
'default' => '0'
),
array(
'id' => 'opt-text-str_replace',
'type' => 'text',
'title' => __( 'Text Option - Str Replace Validated', 'redux-framework-demo' ),
'subtitle' => __( 'You decide.', 'redux-framework-demo' ),
'desc' => __( 'This field\'s default value was changed by a filter hook!', 'redux-framework-demo' ),
'validate' => 'str_replace',
'str' => array(
'search' => ' ',
'replacement' => 'thisisaspace'
),
'default' => 'This is the default.'
),
array(
'id' => 'opt-text-preg_replace',
'type' => 'text',
'title' => __( 'Text Option - Preg Replace Validated', 'redux-framework-demo' ),
'subtitle' => __( 'You decide.', 'redux-framework-demo' ),
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
'validate' => 'preg_replace',
'preg' => array(
'pattern' => '/[^a-zA-Z_ -]/s',
'replacement' => 'no numbers'
),
'default' => '0'
),
array(
'id' => 'opt-text-custom_validate',
'type' => 'text',
'title' => __( 'Text Option - Custom Callback Validated', 'redux-framework-demo' ),
'subtitle' => __( 'You decide.', 'redux-framework-demo' ),
'desc' => __( 'Enter 1
and click Save Changes for an error message, or enter 2
and click Save Changes for a warning message.', 'redux-framework-demo' ),
'validate_callback' => 'redux_validate_callback_function',
'default' => '0'
),
//array(
// 'id' => 'opt-text-custom_validate-class',
// 'type' => 'text',
// 'title' => __( 'Text Option - Custom Callback Validated - Class', 'redux-framework-demo' ),
// 'subtitle' => __( 'You decide.', 'redux-framework-demo' ),
// 'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
// 'validate_callback' => array( 'Class_Name', 'validate_callback_function' ),
// // You can pass the current class
// // Or pass the class name and method
// //'validate_callback' => array(
// // 'Redux_Framework_sample_config',
// // 'validate_callback_function'
// //),
// 'default' => '0'
//),
array(
'id' => 'opt-textarea-no-html',
'type' => 'textarea',
'title' => __( 'Textarea Option - No HTML Validated', 'redux-framework-demo' ),
'subtitle' => __( 'All HTML will be stripped', 'redux-framework-demo' ),
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
'validate' => 'no_html',
'default' => 'No HTML is allowed in here.'
),
array(
'id' => 'opt-textarea-html',
'type' => 'textarea',
'title' => __( 'Textarea Option - HTML Validated', 'redux-framework-demo' ),
'subtitle' => __( 'HTML Allowed (wp_kses)', 'redux-framework-demo' ),
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
'validate' => 'html', //see http://codex.wordpress.org/Function_Reference/wp_kses_post
'default' => 'HTML is allowed in here.'
),
array(
'id' => 'opt-textarea-some-html',
'type' => 'textarea',
'title' => __( 'Textarea Option - HTML Validated Custom', 'redux-framework-demo' ),
'subtitle' => __( 'Custom HTML Allowed (wp_kses)', 'redux-framework-demo' ),
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
'validate' => 'html_custom',
'default' => 'Some HTML is allowed in here.
', 'allowed_html' => array( 'a' => array( 'href' => array(), 'title' => array() ), 'br' => array(), 'em' => array(), 'strong' => array() ) //see http://codex.wordpress.org/Function_Reference/wp_kses ), array( 'id' => 'opt-textarea-js', 'type' => 'textarea', 'title' => __( 'Textarea Option - JS Validated', 'redux-framework-demo' ), 'subtitle' => __( 'JS will be escaped', 'redux-framework-demo' ), 'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ), 'validate' => 'js' ), ) ) ); // -> START Required Redux::setSection( $opt_name, array( 'title' => __( 'Field Required / Linking', 'redux-framework-demo' ), 'id' => 'required', 'desc' => __( 'For full documentation on validation, visit: ', 'redux-framework-demo' ) . 'docs.reduxframework.com/core/the-basics/required/', 'subsection' => true, 'fields' => array( array( 'id' => 'opt-required-basic', 'type' => 'switch', 'title' => 'Basic Required Example', 'subtitle' => 'ClickOn
to see the text field appear.',
'default' => false
),
array(
'id' => 'opt-required-basic-text',
'type' => 'text',
'title' => 'Basic Text Field',
'subtitle' => 'This text field is only show when the above switch is set to On
, using the required
argument.',
'required' => array( 'opt-required-basic', '=', true )
),
array(
'id' => 'opt-required-divide-1',
'type' => 'divide'
),
array(
'id' => 'opt-required-nested',
'type' => 'switch',
'title' => 'Nested Required Example',
'subtitle' => 'Click On
to see another set of options appear.',
'default' => false
),
array(
'id' => 'opt-required-nested-buttonset',
'type' => 'button_set',
'title' => 'Multiple Nested Required Examples',
'subtitle' => 'Click any buton to show different fields based on their required
statements.',
'options' => array(
'button-text' => 'Show Text Field',
'button-textarea' => 'Show Textarea Field',
'button-editor' => 'Show WP Editor',
'button-ace' => 'Show ACE Editor'
),
'required' => array( 'opt-required-nested', '=', true ),
'default' => 'button-text'
),
array(
'id' => 'opt-required-nested-text',
'type' => 'text',
'title' => 'Nested Text Field',
'required' => array( 'opt-required-nested-buttonset', '=', 'button-text' )
),
array(
'id' => 'opt-required-nested-textarea',
'type' => 'textarea',
'title' => 'Nested Textarea Field',
'required' => array( 'opt-required-nested-buttonset', '=', 'button-textarea' )
),
array(
'id' => 'opt-required-nested-editor',
'type' => 'editor',
'title' => 'Nested Editor Field',
'required' => array( 'opt-required-nested-buttonset', '=', 'button-editor' )
),
array(
'id' => 'opt-required-nested-ace',
'type' => 'ace_editor',
'title' => 'Nested ACE Editor Field',
'required' => array( 'opt-required-nested-buttonset', '=', 'button-ace' )
),
array(
'id' => 'opt-required-divide-2',
'type' => 'divide'
),
array(
'id' => 'opt-required-select',
'type' => 'select',
'title' => 'Select Required Example',
'subtitle' => 'Select a different option to display its value. Required may be used to display multiple & reusable fields',
'options' => array(
'no-sidebar' => 'No Sidebars',
'left-sidebar' => 'Left Sidebar',
'right-sidebar' => 'Right Sidebar',
'both-sidebars' => 'Both Sidebars'
),
'default' => 'no-sidebar',
'select2' => array( 'allowClear' => false )
),
array(
'id' => 'opt-required-select-left-sidebar',
'type' => 'select',
'title' => 'Select Left Sidebar',
'data' => 'sidebars',
'default' => '',
'required' => array( 'opt-required-select', '=', array( 'left-sidebar', 'both-sidebars' ) )
),
array(
'id' => 'opt-required-select-right-sidebar',
'type' => 'select',
'title' => 'Select Right Sidebar',
'data' => 'sidebars',
'default' => '',
'required' => array( 'opt-required-select', '=', array( 'right-sidebar', 'both-sidebars' ) )
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( 'WPML Integration', 'redux-framework-demo' ),
'desc' => __( 'These fields can be fully translated by WPML (WordPress Multi-Language). This serves as an example for you to implement. For extra details look at our WPML Implementation documentation.', 'redux-framework-demo' ),
'subsection' => true,
// 'submenu' => false, // Setting submenu to false on a given section will hide it from the WordPress sidebar menu!
'fields' => array(
array(
'id' => 'wpml-text',
'type' => 'textarea',
'title' => __( 'WPML Text', 'redux-framework-demo' ),
'desc' => __( 'This string can be translated via WPML.', 'redux-framework-demo' ),
),
array(
'id' => 'wpml-multicheck',
'type' => 'checkbox',
'title' => __( 'WPML Multi Checkbox', 'redux-framework-demo' ),
'desc' => __( 'You can literally translate the values via key.', 'redux-framework-demo' ),
//Must provide key => value pairs for multi checkbox options
'options' => array(
'1' => 'Option 1',
'2' => 'Option 2',
'3' => 'Option 3'
),
),
)
) );
Redux::setSection( $opt_name, array(
'icon' => 'el el-list-alt',
'title' => __( 'Customizer Only', 'redux-framework-demo' ),
'desc' => __( 'This Section should be visible only in Customizer
', 'redux-framework-demo' ), 'customizer_only' => true, 'fields' => array( array( 'id' => 'opt-customizer-only', 'type' => 'select', 'title' => __( 'Customizer Only Option', 'redux-framework-demo' ), 'subtitle' => __( 'The subtitle is NOT visible in customizer', 'redux-framework-demo' ), 'desc' => __( 'The field desc is NOT visible in customizer.', 'redux-framework-demo' ), 'customizer_only' => true, //Must provide key => value pairs for select options 'options' => array( '1' => 'Opt 1', '2' => 'Opt 2', '3' => 'Opt 3' ), 'default' => '2' ), ) ) ); if ( file_exists( dirname( __FILE__ ) . '/../README.md' ) ) { $section = array( 'icon' => 'el el-list-alt', 'title' => __( 'Documentation', 'redux-framework-demo' ), 'fields' => array( array( 'id' => '17', 'type' => 'raw', 'markdown' => true, 'content_path' => dirname( __FILE__ ) . '/../README.md', // FULL PATH, not relative please //'content' => 'Raw content here', ), ), ); Redux::setSection( $opt_name, $section ); } /* * <--- END SECTIONS */ /* * * YOU MUST PREFIX THE FUNCTIONS BELOW AND ACTION FUNCTION CALLS OR ANY OTHER CONFIG MAY OVERRIDE YOUR CODE. * */ /* * * --> Action hook examples * */ // If Redux is running as a plugin, this will remove the demo notice and links //add_action( 'redux/loaded', '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/' . $opt_name . '/compiler', 'compiler_action', 10, 3); // Change the arguments after they've been declared, but before the panel is created //add_filter('redux/options/' . $opt_name . '/args', 'change_arguments' ); // Change the default value of a field after it's been set, but before it's been useds //add_filter('redux/options/' . $opt_name . '/defaults', 'change_defaults' ); // Dynamically add a section. Can be also used to modify sections/fields //add_filter('redux/options/' . $opt_name . '/sections', 'dynamic_section'); /** * 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. * */ if ( ! function_exists( 'compiler_action' ) ) { function compiler_action( $options, $css, $changed_values ) { 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 ) } } /** * 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; $warning = false; //do your validation if ( $value == 1 ) { $error = true; $value = $existing_value; } elseif ( $value == 2 ) { $warning = true; $value = $existing_value; } $return['value'] = $value; if ( $error == true ) { $field['msg'] = 'your custom error message'; $return['error'] = $field; } if ( $warning == true ) { $field['msg'] = 'your custom warning message'; $return['warning'] = $field; } return $return; } } /** * 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 '
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.
', 'redux-framework-demo' ), 'icon' => 'el el-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. * */ if ( ! function_exists( 'change_arguments' ) ) { 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. * */ if ( ! function_exists( 'change_defaults' ) ) { function change_defaults( $defaults ) { $defaults['str_replace'] = 'Testing filter hook!'; return $defaults; } } /** * Removes the demo link and the notice of integrated demo from the redux-framework plugin */ if ( ! function_exists( 'remove_demo' ) ) { 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' ) ); } } }