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/slider-spinner/ |
Upload File : |
<?php /** * Redux Framework spinner 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__( 'Spinner', 'your-textdomain-here' ), 'id' => 'slider_spinner-spinner', 'desc' => esc_html__( 'For full documentation on this field, visit: ', 'your-textdomain-here' ) . '<a href="https://devs.redux.io/core-fields/spinner.html" target="_blank">https://devs.redux.io/core-fields/spinner.html</a>', 'subsection' => true, 'fields' => array( array( 'id' => 'opt-spinner', 'type' => 'spinner', 'title' => esc_html__( 'JQuery UI Spinner Example 1', 'your-textdomain-here' ), 'desc' => esc_html__( 'JQuery UI spinner description. Min:20, max: 100, step:20, default value: 40', 'your-textdomain-here' ), 'default' => '40', 'min' => '20', 'step' => '20', 'max' => '100', 'suffix' => '', 'output_unit' => '', 'output' => array( '.heck-with-it' => 'max-width' ), ), ), ) );