| Server IP : 199.250.200.62 / Your IP : 216.73.216.68 Web Server : Apache System : Linux vps37394.inmotionhosting.com 3.10.0-1160.119.1.vz7.224.4 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64 User : jasonp18 ( 1000) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /home/jasonp18/www/wp-content/plugins/shortcodes-ultimate/ |
Upload File : |
<?php
/**
* Plugin Name: Shortcodes Ultimate
* Plugin URI: https://getshortcodes.com/
* Version: 5.9.6
* Author: Vladimir Anokhin
* Author URI: https://getshortcodes.com/
* Description: A comprehensive collection of visual components for WordPress
* Text Domain: shortcodes-ultimate
* License: GPLv3
* Requires at least: 4.6
* Requires PHP: 5.4
*/
/**
* Define plugin constants.
*/
define( 'SU_PLUGIN_FILE', __FILE__ );
define( 'SU_PLUGIN_VERSION', '5.9.6' );
/**
* Load dependencies.
*/
require_once 'inc/core/assets.php';
require_once 'inc/core/tools.php';
require_once 'inc/core/generator-views.php';
require_once 'inc/core/generator.php';
require_once 'inc/core/widget.php';
/**
* The code that runs during plugin activation.
*
* @since 5.0.0
*/
function activate_shortcodes_ultimate() {
require_once plugin_dir_path( __FILE__ ) . 'includes/class-shortcodes-ultimate-activator.php';
Shortcodes_Ultimate_Activator::activate();
}
register_activation_hook( __FILE__, 'activate_shortcodes_ultimate' );
/**
* Begins execution of the plugin.
*
* @since 5.0.0
*/
function run_shortcodes_ultimate() {
require_once plugin_dir_path( __FILE__ ) . 'includes/class-shortcodes-ultimate.php';
$plugin = new Shortcodes_Ultimate( __FILE__, SU_PLUGIN_VERSION, 'shortcodes-ultimate-' );
do_action( 'su/ready' );
}
run_shortcodes_ultimate();
/**
* Retrieves instance of the main plugin class.
*
* @since 5.0.4
*/
function shortcodes_ultimate() {
return Shortcodes_Ultimate::get_instance();
}