• File: wcjp-form.php
  • Full Path: /home/dealkatnwc/www/wp-content/plugins/custom-css-js-php/classes/wcjp-form.php
  • Date Modified: 03/07/2020 11:14 AM
  • File size: 1.43 KB
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
if ( ! class_exists( 'WCJP_FORM' ) ) {

	class WCJP_FORM extends FlipperCode_HTML_Markup{


		function __construct($options = array()) {

                        $premium_features;
			
			$productInfo = array('productName' => __('Custom css-js-php',WCJP_TEXT_DOMAIN),
                        'productSlug' => 'custom-css-js-php',
                        'productTagLine' => 'Write custom code for php, html, javascript or css and insert in to your theme using shortcode, actions or filters.',
                        'productTextDomain' => WCJP_TEXT_DOMAIN,
                        'productIconImage' => WCJP_URL.'core/core-assets/images/wp-poet.png',
                        'videoURL' => 'https://www.youtube.com/channel/UCcghD6ZtR2oGAlzXtIIQ5NQ',
                        'productVersion' => WCJP_VERSION,
                        'docURL' => 'http://guide.flippercode.com/',
                        'demoURL' => 'https://www.flippercode.com/shop/',
                        'productImagePath' => WCJP_URL.'core/core-assets/product-images/',
                        'productSaleURL' => 'https://www.flippercode.com/',
                        'multisiteLicence' => 'https://www.flippercode.com/',
                        'premium_features' => $premium_features,
                        'excludeBlocks' => array('product-activation','newsletter')
			);
    
			$productInfo = array_merge($productInfo, $options);
			parent::__construct($productInfo);

		}

	}
	
}