Current Path : /var/www/wptbox/wp-content/plugins/suretriggers/src/Integrations/elementor-pro/ |
Current File : /var/www/wptbox/wp-content/plugins/suretriggers/src/Integrations/elementor-pro/elementor-pro.php |
<?php /** * Elementor core integrations file * * @since 1.0.0 * @package SureTrigger */ namespace SureTriggers\Integrations\ElementorPro; use ElementorPro\Plugin; use SureTriggers\Controllers\IntegrationsController; use SureTriggers\Integrations\Integrations; use SureTriggers\Traits\SingletonLoader; /** * Class SureTrigger * * @package SureTriggers\Integrations\ElementorPro */ class ElementorPro extends Integrations { use SingletonLoader; /** * ID * * @var string */ protected $id = 'ElementorPro'; /** * SureTrigger constructor. */ public function __construct() { $this->name = __( 'Elementor', 'suretriggers' ); $this->description = __( 'Elementor is the platform web creators choose to build professional WordPress websites, grow their skills, and build their business.', 'suretriggers' ); $this->icon_url = SURE_TRIGGERS_URL . 'assets/icons/elementorpro.png'; parent::__construct(); } /** * Is Plugin depended plugin is installed or not. * * @return bool */ public function is_plugin_installed() { return class_exists( Plugin::class ); } } IntegrationsController::register( ElementorPro::class );