File: /home/enamadmin/www/wp-content/themes/eduma/thim-elementor-kit/login-form/login-form.php
<?php
namespace Elementor;
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
class Thim_Ekit_Widget_Login_Form extends Widget_Base {
public function get_name() {
return 'thim-login-form';
}
public function get_title() {
return esc_html__( 'Login Form', 'eduma' );
}
public function get_icon() {
return 'thim-eicon thim-widget-icon thim-widget-icon-login-form';
}
public function get_categories() {
return [ 'thim_ekit' ];
}
public function get_base() {
return basename( __FILE__, '.php' );
}
protected function register_controls() {
$this->start_controls_section(
'content',
[
'label' => esc_html__( 'Login Form', 'eduma' )
]
);
$this->add_control(
'captcha',
[
'label' => esc_html__( 'Use Captcha?', 'eduma' ),
'type' => Controls_Manager::SWITCHER,
'default' => ''
]
);
$this->add_control(
'term',
[
'label' => esc_html__( 'Terms of Service link', 'eduma' ),
'description' => esc_html__( 'Leave empty to disable this field.', 'eduma' ),
'type' => Controls_Manager::URL,
'placeholder' => esc_html__( 'https://your-link.com', 'eduma' ),
'show_external' => true,
'default' => [
'url' => '',
'is_external' => true,
'nofollow' => true,
],
]
);
$this->end_controls_section();
}
protected function render() {
$settings = $this->get_settings_for_display();
// Map variables between Elementor and SiteOrigin
$instance = array(
'captcha' => $settings['captcha'],
'term' => $settings['term']['url'],
'is_external' => $settings['term']['is_external'],
'nofollow' => $settings['term']['nofollow']
);
thim_ekit_get_widget_template( $this->get_base(), array(
'instance' => $instance
) );
}
}