![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mets.corals.io/wp-content/plugins/easy-accordion-free/admin/views/ |
<?php /** * The tools configuration. * * @link https://shapedplugin.com/ * @since 2.0.0 * * @package easy-accordion-free * @subpackage easy-accordion-free/framework */ if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access directly. // // Set a unique slug-like ID. // $prefix = 'sp_eap_tools'; // // Create options. // SP_EAP::createOptions( $prefix, array( 'menu_title' => __( 'Tools', 'easy-accordion-free' ), 'menu_slug' => 'eap_tools', 'menu_parent' => 'edit.php?post_type=sp_easy_accordion', 'menu_type' => 'submenu', 'ajax_save' => false, 'show_bar_menu' => false, 'save_defaults' => false, 'show_reset_all' => false, 'show_all_options' => false, 'show_search' => false, 'show_footer' => false, 'show_buttons' => false, // Custom show button option added for hide save button in tools page. 'framework_title' => __( 'Tools', 'easy-accordion-free' ), 'framework_class' => 'sp-eap-options eap_tools', 'theme' => 'light', ) ); SP_EAP::createSection( $prefix, array( 'title' => __( 'Export', 'easy-accordion-free' ), 'icon' => 'fa fa-arrow-circle-o-down ', 'fields' => array( array( 'id' => 'eap_what_export', 'type' => 'radio', 'class' => 'eap_what_export', 'title' => __( 'Choose What To Export', 'easy-accordion-free' ), 'multiple' => false, 'options' => array( 'all_shortcodes' => __( 'All Accordion Groups', 'easy-accordion-free' ), 'selected_shortcodes' => __( 'Selected Accordion Groups', 'easy-accordion-free' ), ), 'default' => 'all_shortcodes', ), array( 'id' => 'eap_post', 'class' => 'eap_post_ids', 'type' => 'select', 'title' => ' ', 'options' => 'sp_easy_accordion', 'chosen' => true, 'sortable' => false, 'multiple' => true, 'placeholder' => __( 'Choose group(s)', 'easy-accordion-free' ), 'query_args' => array( 'posts_per_page' => -1, ), 'dependency' => array( 'eap_what_export', '==', 'selected_shortcodes', true ), ), array( 'id' => 'export', 'class' => 'eap_export', 'type' => 'button_set', 'title' => ' ', 'options' => array( '' => array( 'text' => __( 'Export', 'easy-accordion-free' ), ), ), ), ), ) ); SP_EAP::createSection( $prefix, array( 'title' => __( 'Import', 'easy-accordion-free' ), 'icon' => 'fa fa-arrow-circle-o-up ', 'fields' => array( array( 'class' => 'eap_import', 'type' => 'custom_import', 'title' => __( 'Import JSON File To Upload', 'easy-accordion-free' ), ), ), ) );