?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/plugins/complianz-gdpr/integrations/plugins/



?? Go up: /home/webdevt/www/wdp/wp-content/plugins/complianz-gdpr/integrations

?? Viewing: forminator-addon-class-v2.php

<?php
defined( 'ABSPATH' ) or die( "you do not have access to this page!" );

final class CMPLZ_Forminator_Addon_V2 extends Forminator_Integration {

	private static $_instance = null;
	/**
	 * Use this trait to mark this addon as PRO
	 */
	protected $_slug = 'complianz';
	protected $_version = CMPLZ_VERSION;
	protected $_min_forminator_version = '1.1';
	protected $_short_title = 'Complianz';
	protected $_title = 'Complianz Privacy Suite';
	protected $_url = 'https://complianz.io';
	protected $_full_path = __FILE__;

	public function __construct() {
		// late init to allow translation
		$this->_description
			= __( 'Integrate Forminator with Complianz Privacy Suite',
			"complianz-gdpr" );
		$this->_activation_error_message
			= __( 'Sorry but we failed to activate the Complianz integration',
			"complianz-gdpr" );
		$this->_deactivation_error_message
			= __( 'Sorry but we failed to deactivate the Complianz integration, please try again',
			"complianz-gdpr" );

		$this->_update_settings_error_message = __(
			'Sorry, we failed to update settings, please check your form and try again',
			"complianz-gdpr"
		);
	}

	/**
	 * @return self|null
	 */
	public static function get_instance() {
		if ( is_null( self::$_instance ) ) {
			self::$_instance = new self();
		}

		return self::$_instance;
	}

	/**
	 * Flag for check if and addon connected (global settings suchs as api key complete)
	 *
	 * @return bool
	 */
	public function is_connected() {
		$fields = get_option( 'complianz_options_integrations' );
		if ( ! isset( $fields["forminator"] ) ) {
			return true;
		}

		if ( isset( $fields["forminator"] ) && $fields["forminator"] == 1 ) {
			return true;
		}

		return false;

	}

	/**
	 * Flag for check if and addon connected to a form(form settings suchs as list name completed)
	 *
	 * @param $form_id
	 *
	 * @return bool
	 */
	public function is_form_connected( $form_id ) {
		return false;
	}

	/**
	 * Get Image
	 *
	 * @return string
	 * @since  1.1
	 */
	public function get_image() {
		return CMPLZ_URL . 'assets/images/icon-logo.svg';
	}

	/**
	 * Get Retina image
	 *
	 * @return string
	 * @since  1.1
	 */
	public function get_image_x2() {
		return CMPLZ_URL . 'assets/images/icon-256x256.png';
	}

	/**
	 * Get icon
	 *
	 * @return string
	 * @since  1.1
	 */
	public function get_icon() {
		return CMPLZ_URL . 'assets/images/icon-logo.svg';
	}

	/**
	 * Get Retina icon
	 *
	 * @return string
	 * @since  1.1
	 */
	public function get_icon_x2() {
		return CMPLZ_URL . 'assets/images/icon-256x256.png';
	}
}


??

??