<?php /** * Plugin Name: Starter Templates by Kadence WP * Description: Launch a beautiful website with the power of AI or using our classic pre built style. * Version: 2.2.10 * Author: Kadence WP * Author URI: https://kadencewp.com/ * Requires PHP: 7.4 * License: GPLv2 or later * Text Domain: kadence-starter-templates * * @package Kadence Starter Templates */ // Block direct access to the main plugin file. if ( ! defined( 'ABSPATH' ) ) { exit; } define( 'KADENCE_STARTER_TEMPLATES_PATH', plugin_dir_path( __FILE__ ) ); define( 'KADENCE_STARTER_TEMPLATES_URL', trailingslashit( plugin_dir_url( __FILE__ ) ) ); define( 'KADENCE_STARTER_TEMPLATES_VERSION', '2.2.10' ); require_once plugin_dir_path( __FILE__ ) . 'vendor/vendor-prefixed/autoload.php'; require_once plugin_dir_path( __FILE__ ) . 'vendor/autoload.php'; require_once plugin_dir_path( __FILE__ ) . 'class-kadence-starter-templates.php'; use KadenceWP\KadenceStarterTemplates\App; use KadenceWP\KadenceStarterTemplates\StellarWP\ContainerContract\ContainerInterface; use KadenceWP\KadenceStarterTemplates\Container; use KadenceWP\KadenceStarterTemplates\StellarWP\ProphecyMonorepo\Container\ContainerAdapter; use KadenceWP\KadenceStarterTemplates\StellarWP\Uplink\Config; use KadenceWP\KadenceStarterTemplates\StellarWP\Uplink\Uplink; use KadenceWP\KadenceStarterTemplates\StellarWP\Uplink\Register; use KadenceWP\KadenceStarterTemplates\CLI\CLI_Commands; /** * Load the plugin app. */ function kadence_starter_templates_init() { $container = new Container(); // The Kadence Starter Templates Application. App::instance( new ContainerAdapter( $container->container() ) ); /** * Uplink. */ Config::set_container( $container ); Config::set_hook_prefix( 'kadence-starter-templates' ); if ( ! class_exists( '\KadenceWP\KadenceBlocks\App' ) ) { Config::set_auth_cache_expiration( WEEK_IN_SECONDS ); Config::set_token_auth_prefix( 'kadence' ); } Uplink::init(); Register::plugin( 'kadence-starter-templates', 'Kadence Starter Templates', KADENCE_STARTER_TEMPLATES_VERSION, 'kadence-starter-templates/kadence-starter-templates.php', App::class ); add_filter( 'stellarwp/uplink/kadence-starter-templates/prevent_update_check', '__return_true' ); add_filter( 'stellarwp/uplink/kadence-starter-templates/api_get_base_url', static function() { return 'https://licensing.kadencewp.com'; }, 10, 0 ); require_once plugin_dir_path( __FILE__ ) . 'inc/class-starter-import-processes.php'; require_once plugin_dir_path( __FILE__ ) . 'inc/cli/class-cli-commands.php'; require_once plugin_dir_path( __FILE__ ) . 'inc/content-replace/class-image-replacer.php'; require_once plugin_dir_path( __FILE__ ) . 'inc/content-replace/class-content-remover.php'; require_once plugin_dir_path( __FILE__ ) . 'inc/content-replace/class-woo-content-handler.php'; require_once plugin_dir_path( __FILE__ ) . 'inc/content-replace/class-color-handler.php'; require_once plugin_dir_path( __FILE__ ) . 'inc/content-replace/class-address-replacer.php'; require_once plugin_dir_path( __FILE__ ) . 'inc/content-replace/class-content-replacer.php'; require_once plugin_dir_path( __FILE__ ) . 'inc/content-replace/class-donation-form-handler.php'; require_once plugin_dir_path( __FILE__ ) . 'inc/cli/class-plugin-installer.php'; // Initialize CLI Commands new CLI_Commands(); } add_action( 'plugins_loaded', 'kadence_starter_templates_init', 2 ); /** * Load the plugin textdomain */ function kadence_starter_templates_lang() { load_plugin_textdomain( 'kadence-starter-templates', false, basename( dirname( __FILE__ ) ) . '/languages' ); } add_action( 'init', 'kadence_starter_templates_lang' ); /** * The Kadence Starter Templates Application Container. * * @see kadence_starter_templates_init() * * @note kadence_starter_templates_init() must be called before this one. * * @return ContainerInterface * @throws InvalidArgumentException */ function kadence_starter_templates(): ContainerInterface { return App::instance()->container(); }