| Server IP : 198.38.94.13 / Your IP : 216.73.217.33 Web Server : Apache System : Linux d4744.dxb1.stableserver.net 5.14.0-611.49.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Apr 21 16:39:08 EDT 2026 x86_64 User : revivere ( 1140) PHP Version : 8.2.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/revivere/www/wp-content/plugins/pro-elements/modules/call-to-action/ |
Upload File : |
<?php
namespace ElementorPro\Modules\CallToAction;
use ElementorPro\Base\Module_Base;
use ElementorPro\Plugin;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Module extends Module_Base {
public function __construct() {
parent::__construct();
add_action( 'elementor/frontend/after_register_styles', [ $this, 'register_styles' ] );
add_action( 'elementor/preview/enqueue_styles', [ $this, 'enqueue_preview_styles' ] );
}
public function get_widgets() {
return [
'Call_To_Action',
];
}
public function get_name() {
return 'call-to-action';
}
/**
* Get the base URL for assets.
*
* @return string
*/
public function get_assets_base_url(): string {
return ELEMENTOR_PRO_URL;
}
/**
* Register styles.
*
* At build time, Elementor compiles `/modules/call-to-action/assets/scss/frontend.scss`
* to `/assets/css/widget-call-to-action.min.css`.
*
* @return void
*/
public function register_styles() {
$direction_suffix = is_rtl() ? '-rtl' : '';
$has_custom_breakpoints = Plugin::elementor()->breakpoints->has_custom_breakpoints();
wp_register_style(
'widget-call-to-action',
Plugin::get_frontend_file_url( "widget-call-to-action{$direction_suffix}.min.css", $has_custom_breakpoints ),
[ 'elementor-frontend' ],
$has_custom_breakpoints ? null : ELEMENTOR_PRO_VERSION
);
wp_register_style(
'e-transitions',
$this->get_css_assets_url( 'transitions', 'assets/css/conditionals/', true ),
[],
ELEMENTOR_PRO_VERSION
);
wp_register_style(
'e-ribbon',
$this->get_css_assets_url( 'ribbon', 'assets/css/conditionals/', true ),
[],
ELEMENTOR_PRO_VERSION
);
}
public function enqueue_preview_styles() {
wp_enqueue_style( 'e-ribbon' );
}
}