<?php
namespace ElementorPro\Modules\FlipBox;
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' ] );
}
public function get_widgets() {
return [
'Flip_Box',
];
}
public function get_name() {
return 'flip-box';
}
/**
* 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/flip-box/assets/scss/frontend.scss`
* to `/assets/css/widget-flip-box.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-flip-box',
Plugin::get_frontend_file_url( "widget-flip-box{$direction_suffix}.min.css", $has_custom_breakpoints ),
[ 'elementor-frontend' ],
$has_custom_breakpoints ? null : ELEMENTOR_PRO_VERSION
);
}
}