| Server IP : 52.211.252.20 / Your IP : 172.31.22.179 Web Server : Apache/2.4.68 (Ubuntu) mod_fcgid/2.3.9 OpenSSL/3.0.2 System : Linux ip-172-31-10-208.eu-west-1.compute.internal 6.8.0-1044-aws #46~22.04.1-Ubuntu SMP Tue Dec 2 12:52:18 UTC 2025 x86_64 User : kazang ( 1006) PHP Version : 8.2.31 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,exec,system,passthru,shell_exec,proc_open,popen MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/kazang/web/kazang.com/public_html/wp-content/plugins/elementor/modules/link-in-bio/ |
Upload File : |
<?php
namespace Elementor\Modules\LinkInBio;
use Elementor\Core\Base\Module as BaseModule;
use Elementor\Core\Experiments\Manager;
use Elementor\Plugin;
use Elementor\Utils;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Module extends BaseModule {
const WIDGET_HAS_CUSTOM_BREAKPOINTS = true;
public function get_name(): string {
return 'link-in-bio';
}
public function get_widgets(): array {
return [
'Link_In_Bio',
];
}
public function __construct() {
parent::__construct();
add_action( 'elementor/frontend/after_register_styles', [ $this, 'register_styles' ] );
}
/**
* Register styles.
*
* At build time, Elementor compiles `/modules/link-in-bio/assets/scss/widgets/*.scss`
* to `/assets/css/widget-*.min.css`.
*
* @return void
*/
public function register_styles() {
$direction_suffix = is_rtl() ? '-rtl' : '';
$widget_styles = $this->get_widgets_style_list();
$has_custom_breakpoints = Plugin::$instance->breakpoints->has_custom_breakpoints();
foreach ( $widget_styles as $widget_style_name => $widget_has_responsive_style ) {
$should_load_responsive_css = $widget_has_responsive_style ? $has_custom_breakpoints : false;
wp_register_style(
$widget_style_name,
$this->get_frontend_file_url( "{$widget_style_name}{$direction_suffix}.min.css", $should_load_responsive_css ),
[ 'elementor-frontend' ],
$should_load_responsive_css ? null : ELEMENTOR_VERSION
);
}
}
private function get_widgets_style_list(): array {
return [
'widget-link-in-bio' => self::WIDGET_HAS_CUSTOM_BREAKPOINTS, // TODO: Remove in v3.27.0 [ED-15717]
'widget-link-in-bio-base' => self::WIDGET_HAS_CUSTOM_BREAKPOINTS,
'widget-link-in-bio-var-2' => ! self::WIDGET_HAS_CUSTOM_BREAKPOINTS,
'widget-link-in-bio-var-3' => ! self::WIDGET_HAS_CUSTOM_BREAKPOINTS,
'widget-link-in-bio-var-4' => ! self::WIDGET_HAS_CUSTOM_BREAKPOINTS,
'widget-link-in-bio-var-5' => ! self::WIDGET_HAS_CUSTOM_BREAKPOINTS,
'widget-link-in-bio-var-7' => ! self::WIDGET_HAS_CUSTOM_BREAKPOINTS,
];
}
}