File: /home/mykopera/public_html/kpnj/wp-content/plugins/astra-sites/astra-sites.php
<?php
/**
* Plugin Name: Starter Templates
* Plugin URI: https://wpastra.com/
* Description: Starter Templates is all in one solution for complete starter sites, single page templates, blocks & images. This plugin offers the premium library of ready templates & provides quick access to beautiful Pixabay images that can be imported in your website easily.
* Version: 2.3.3
* Author: Brainstorm Force
* Author URI: https://www.brainstormforce.com
* Text Domain: astra-sites
*
* @package Astra Sites
*/
/**
* Set constants.
*/
if ( ! defined( 'ASTRA_SITES_NAME' ) ) {
define( 'ASTRA_SITES_NAME', __( 'Starter Templates', 'astra-sites' ) );
}
if ( ! defined( 'ASTRA_SITES_VER' ) ) {
define( 'ASTRA_SITES_VER', '2.3.3' );
}
if ( ! defined( 'ASTRA_SITES_FILE' ) ) {
define( 'ASTRA_SITES_FILE', __FILE__ );
}
if ( ! defined( 'ASTRA_SITES_BASE' ) ) {
define( 'ASTRA_SITES_BASE', plugin_basename( ASTRA_SITES_FILE ) );
}
if ( ! defined( 'ASTRA_SITES_DIR' ) ) {
define( 'ASTRA_SITES_DIR', plugin_dir_path( ASTRA_SITES_FILE ) );
}
if ( ! defined( 'ASTRA_SITES_URI' ) ) {
define( 'ASTRA_SITES_URI', plugins_url( '/', ASTRA_SITES_FILE ) );
}
if ( ! function_exists( 'astra_sites_setup' ) ) :
/**
* Astra Sites Setup
*
* @since 1.0.5
*/
function astra_sites_setup() {
require_once ASTRA_SITES_DIR . 'inc/classes/class-astra-sites.php';
}
add_action( 'plugins_loaded', 'astra_sites_setup' );
endif;
// Astra Notices.
require_once ASTRA_SITES_DIR . 'admin/astra-notices/class-astra-notices.php';
// BSF Analytics Tracker.
require_once ASTRA_SITES_DIR . 'admin/bsf-analytics/class-bsf-analytics.php';