![]() 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/gg.corals.io/wp-content/plugins/trx_addons/components/api/give/ |
<?php /** * Plugin support: Give (Elementor support) * * @package WordPress * @subpackage ThemeREX Addons * @since v1.6.50 */ // Don't load directly if ( ! defined( 'TRX_ADDONS_VERSION' ) ) { die( '-1' ); } // Elementor Widget if (!function_exists('trx_addons_sc_give_add_in_elementor')) { add_action( 'elementor/widgets/widgets_registered', 'trx_addons_sc_give_add_in_elementor' ); function trx_addons_sc_give_add_in_elementor() { if (!trx_addons_exists_give() || !class_exists('TRX_Addons_Elementor_Widget')) return; class TRX_Addons_Elementor_Widget_Give_Form extends TRX_Addons_Elementor_Widget { /** * Retrieve widget name. * * @since 1.6.41 * @access public * * @return string Widget name. */ public function get_name() { return 'trx_sc_give'; } /** * Retrieve widget title. * * @since 1.6.41 * @access public * * @return string Widget title. */ public function get_title() { return __( 'Give Donation Form', 'trx_addons' ); } /** * Retrieve widget icon. * * @since 1.6.41 * @access public * * @return string Widget icon. */ public function get_icon() { return 'eicon-form-horizontal'; } /** * Retrieve the list of categories the widget belongs to. * * Used to determine where to display the widget in the editor. * * @since 1.6.41 * @access public * * @return array Widget categories. */ public function get_categories() { return ['trx_addons-support']; } /** * Register widget controls. * * Adds different input fields to allow the user to change and customize the widget settings. * * @since 1.6.41 * @access protected */ protected function register_controls() { $this->start_controls_section( 'section_sc_give', [ 'label' => __( 'Give Donation Form', 'trx_addons' ), ] ); $forms = trx_addons_get_list_give_forms(); $id = (int) trx_addons_array_get_first($forms); $this->add_control( 'form_id', [ 'label' => __( 'Donation Form', 'trx_addons' ), 'label_block' => false, 'type' => \Elementor\Controls_Manager::SELECT, 'options' => $forms, 'default' => ''.$id // Convert to string ] ); $this->end_controls_section(); } // Return widget's layout public function render() { if (shortcode_exists('give_form')) { $atts = $this->sc_prepare_atts($this->get_settings(), $this->get_sc_name()); trx_addons_show_layout(do_shortcode(sprintf('[give_form id="%s"]', $atts['form_id']))); } else $this->shortcode_not_exists('give_form', 'Give'); } } // Register widget \Elementor\Plugin::instance()->widgets_manager->register_widget_type( new TRX_Addons_Elementor_Widget_Give_Form() ); } }