Server : Apache System : Linux ls31.server.ly 3.10.0-962.3.2.lve1.5.68.el7.x86_64 #1 SMP Wed Apr 6 11:12:23 UTC 2022 x86_64 User : medchoco ( 2906) PHP Version : 8.3.16 Disable Function : mail Directory : /home/medchoco/www/wp-content/plugins/redux-framework/sample/sections/switch-button/ |
Upload File : |
<?php /** * Redux Framework switch config. * For full documentation, please visit: http://devs.redux.io/ * * @package Redux Framework */ defined( 'ABSPATH' ) || exit; Redux::set_section( $opt_name, array( 'title' => esc_html__( 'Switch', 'your-textdomain-here' ), 'id' => 'switch_buttonset-switch', 'desc' => esc_html__( 'For full documentation on this field, visit: ', 'your-textdomain-here' ) . '<a href="https://devs.redux.io/core-fields/switch.html" target="_blank">https://devs.redux.io/core-fields/switch.html</a>', 'subsection' => true, 'fields' => array( array( 'id' => 'switch-on', 'type' => 'switch', 'title' => esc_html__( 'Switch On', 'your-textdomain-here' ), 'subtitle' => esc_html__( 'Look, it\'s on!', 'your-textdomain-here' ), 'default' => true, ), array( 'id' => 'switch-off', 'type' => 'switch', 'title' => esc_html__( 'Switch Off', 'your-textdomain-here' ), 'subtitle' => esc_html__( 'Look, it\'s on!', 'your-textdomain-here' ), 'default' => false, ), array( 'id' => 'switch-parent', 'type' => 'switch', 'title' => esc_html__( 'Switch - Nested Children, Enable to show', 'your-textdomain-here' ), 'subtitle' => esc_html__( 'Look, it\'s on! Also hidden child elements!', 'your-textdomain-here' ), 'default' => false, 'on' => 'Enabled', 'off' => 'Disabled', ), array( 'id' => 'switch-child1', 'type' => 'switch', 'required' => array( 'switch-parent', '=', true ), 'title' => esc_html__( 'Switch - This and the next switch required for patterns to show', 'your-textdomain-here' ), 'subtitle' => esc_html__( 'Also called a "fold" parent.', 'your-textdomain-here' ), 'desc' => esc_html__( 'Items set with a fold to this ID will hide unless this is set to the appropriate value.', 'your-textdomain-here' ), 'default' => false, ), array( 'id' => 'switch-child2', 'type' => 'switch', 'required' => array( 'switch-parent', '=', true ), 'title' => esc_html__( 'Switch2 - Enable the above switch and this one for patterns to show', 'your-textdomain-here' ), 'subtitle' => esc_html__( 'Also called a "fold" parent.', 'your-textdomain-here' ), 'desc' => esc_html__( 'Items set with a fold to this ID will hide unless this is set to the appropriate value.', 'your-textdomain-here' ), 'default' => false, ), ), ) );