Current File : /home/kelaby89/www/wp/wp-content/plugins/trx_addons/components/api/give/give-sc-elementor.php |
<?php
/**
* Plugin support: Give (Elementor support)
*
* @package ThemeREX Addons
* @since v1.6.50
*/
// Don't load directly
if ( ! defined( 'TRX_ADDONS_VERSION' ) ) {
exit;
}
if ( ! function_exists('trx_addons_sc_give_add_in_elementor' ) ) {
add_action( trx_addons_elementor_get_action_for_widgets_registration(), 'trx_addons_sc_give_add_in_elementor' );
/**
* Register a plugin-specific widget in the Elementor Widget List
*
* @hooked elementor/widgets/register
*/
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' );
}
/**
* Get widget keywords.
*
* Retrieve the list of keywords the widget belongs to.
*
* @since 2.27.2
* @access public
*
* @return array Widget keywords.
*/
public function get_keywords() {
return [ 'give', 'donation', 'charity' ];
}
/**
* Retrieve widget icon.
*
* @since 1.6.41
* @access public
*
* @return string Widget icon.
*/
public function get_icon() {
return 'eicon-form-horizontal trx_addons_elementor_widget_icon';
}
/**
* 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-elements'];
}
/**
* 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 = ! is_admin()
? array()
: trx_addons_array_merge( array( 0 => trx_addons_get_not_selected_text( esc_html__( 'Select form', 'trx_addons' ) ) ), trx_addons_get_list_give_forms() );
$this->add_control(
'form_id',
[
'label' => __( 'Donation Form', 'trx_addons' ),
'label_block' => false,
'type' => \Elementor\Controls_Manager::SELECT,
'options' => $forms,
'default' => 0
]
);
$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
trx_addons_elm_register_widget( 'TRX_Addons_Elementor_Widget_Give_Form' );
}
}