config = array( 'premium_temps' => __( 'Premium Templates', 'premium-addons-for-elementor' ), 'key' => $this->get_license_key(), 'status' => $this->get_license_status(), 'license_page' => $this->get_license_page(), 'pro_message' => $this->get_pro_message(), 'api' => array( 'enabled' => true, 'base' => 'https://premiumtemplates.io/', 'path' => 'wp-json/patemp/v2', 'id' => 9, 'endpoints' => array( 'templates' => '/templates/', 'keywords' => '/keywords/', 'categories' => '/categories/', 'template' => '/template/', 'info' => '/info/', 'template' => '/template/', ), ), ); } /** * Get license key. * * Gets Premium Add-ons PRO license key. * * @since 3.6.0 * @access public * * @return string|boolean license key or false if no license key */ public function get_license_key() { if ( ! Helper_Functions::check_papro_version() ) { return; } $key = Admin_Helper::get_license_key(); return $key; } /** * Get license status. * * Gets Premium Add-ons PRO license status. * * @since 3.6.0 * @access public * * @return string|boolean license status or false if no license key */ public function get_license_status() { if ( ! Helper_Functions::check_papro_version() ) { return; } $status = Admin_Helper::get_license_status(); return $status; } /** * Get license page. * * Gets Premium Add-ons PRO license page. * * @since 3.6.0 * @access public * * @return string admin license page or plugin URI */ public function get_license_page() { if ( Helper_Functions::check_papro_version() ) { return add_query_arg( array( 'page' => $this->slug . '#tab=license', ), esc_url( admin_url( 'admin.php' ) ) ); } else { $url = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pro', 'premium-templates', 'wp-dash', 'get-pro' ); return $url; } } /** * * Get License Message * * @since 3.6.0 * @access public * * @return string Pro version message */ public function get_pro_message() { if ( Helper_Functions::check_papro_version() ) { return __( 'Activate License', 'premium-addons-for-elementor' ); } else { return __( 'Get Pro', 'premium-addons-for-elementor' ); } } /** * Get * * Gets a segment of config data. * * @since 3.6.0 * @access public * * @return string|array|false data or false if not set */ public function get( $key = '' ) { return isset( $this->config[ $key ] ) ? $this->config[ $key ] : false; } /** * Creates and returns an instance of the class * * @since 3.6.0 * @access public * * @return object */ public static function get_instance() { if ( self::$instance == null ) { self::$instance = new self(); } return self::$instance; } } }