| Server IP : 47.82.179.145 / Your IP : 216.73.217.129 Web Server : nginx/1.26.3 System : Linux iZt4n9czhka2zvqfajdlr2Z 6.8.0-63-generic #66-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 13 20:25:30 UTC 2025 x86_64 User : www ( 1001) PHP Version : 8.3.30 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,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,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/scuipturepactory.com/wp-content/themes/hello-biz/includes/ |
Upload File : |
<?php
namespace HelloBiz\Includes;
use Elementor\App\App;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* class Utils
**/
class Utils {
private static ?bool $elementor_installed = null;
private static ?bool $elementor_active = null;
public static function elementor(): \Elementor\Plugin {
return \Elementor\Plugin::$instance;
}
public static function has_pro(): bool {
return defined( 'ELEMENTOR_PRO_VERSION' );
}
public static function is_elementor_active(): bool {
if ( null === self::$elementor_active ) {
self::$elementor_active = defined( 'ELEMENTOR_VERSION' );
}
return self::$elementor_active;
}
public static function is_elementor_installed(): bool {
if ( null === self::$elementor_installed ) {
self::$elementor_installed = file_exists( WP_PLUGIN_DIR . '/elementor/elementor.php' );
}
return self::$elementor_installed;
}
public static function is_hello_plus_active() {
return defined( 'HELLO_PLUS_VERSION' );
}
public static function is_hello_plus_installed() {
return file_exists( WP_PLUGIN_DIR . '/hello-plus/hello-plus.php' );
}
public static function is_hello_plus_setup_wizard_done() {
if ( ! class_exists( 'HelloPlus\Modules\Admin\Classes\Menu\Pages\Setup_Wizard' ) ) {
return false;
}
return \HelloPlus\Modules\Admin\Classes\Menu\Pages\Setup_Wizard::has_site_wizard_been_completed();
}
public static function get_hello_plus_activation_link() {
$plugin = 'hello-plus/hello-plus.php';
$url = 'plugins.php?action=activate&plugin=' . $plugin . '&plugin_status=all';
return add_query_arg( '_wpnonce', wp_create_nonce( 'activate-plugin_' . $plugin ), $url );
}
public static function get_plugin_install_url( $plugin_slug ): string {
$action = 'install-plugin';
$url = add_query_arg(
[
'action' => $action,
'plugin' => $plugin_slug,
'referrer' => 'hello-biz',
],
admin_url( 'update.php' )
);
return add_query_arg( '_wpnonce', wp_create_nonce( $action . '_' . $plugin_slug ), $url );
}
public static function get_theme_builder_options(): array {
$url = 'https://go.elementor.com/hello-biz-builder';
$target = '_blank';
if ( ! class_exists( 'Elementor\App\App' ) ) {
return [
'link' => $url,
'target' => $target,
];
}
if ( self::has_pro() ) {
$url = admin_url( 'admin.php?page=' . App::PAGE_ID . '&ver=' . ELEMENTOR_VERSION ) . '#site-editor';
$target = '_self';
}
if ( self::is_elementor_active() ) {
$url = admin_url( 'admin.php?page=' . App::PAGE_ID . '&ver=' . ELEMENTOR_VERSION ) . '#site-editor/promotion';
$target = '_self';
}
return [
'link' => $url,
'target' => $target,
];
}
}