/home/skemvmse/www/wp-content/plugins/astra-portfolio/astra-portfolio.php
<?php
/**
* Plugin Name: WP Portfolio
* Plugin URI: http://www.wpastra.com/pro/
* Description: Display the portfolio of Starter Templates & other portfolio items easily on your website.
* Version: 1.11.3
* Author: Brainstorm Force
* Author URI: http://www.brainstormforce.com
* Text Domain: astra-portfolio
*
* @package Astra Portfolio
*/
/**
* Set constants.
*/
define( 'ASTRA_PORTFOLIO_VER', '1.11.3' );
define( 'ASTRA_PORTFOLIO_FILE', __FILE__ );
define( 'ASTRA_PORTFOLIO_BASE', plugin_basename( ASTRA_PORTFOLIO_FILE ) );
define( 'ASTRA_PORTFOLIO_DIR', plugin_dir_path( ASTRA_PORTFOLIO_FILE ) );
define( 'ASTRA_PORTFOLIO_URI', plugins_url( '/', ASTRA_PORTFOLIO_FILE ) );
require_once ASTRA_PORTFOLIO_DIR . 'classes/class-astra-portfolio.php';
// Brainstorm Updater.
require_once ASTRA_PORTFOLIO_DIR . 'class-brainstorm-updater-astra-portfolio.php';
// Astra Notices.
require_once ASTRA_PORTFOLIO_DIR . 'admin/astra-notices/class-astra-notices.php';
// BSF Analytics Tracker.
if ( ! class_exists( 'BSF_Analytics_Loader' ) ) {
require_once ASTRA_PORTFOLIO_DIR . 'admin/bsf-analytics/class-bsf-analytics-loader.php';
}
$bsf_analytics = BSF_Analytics_Loader::get_instance();
$bsf_analytics->set_entity(
array(
'bsf' => array(
'product_name' => 'WP Portfolio',
'path' => ASTRA_PORTFOLIO_DIR . 'admin/bsf-analytics',
'author' => 'Brainstorm Force',
'time_to_display' => '+24 hours',
),
)
);