PluginProbe
Shortcodes Ultimate – Content Elements / 7.8.4
Shortcodes Ultimate – Content Elements v7.8.4
7.8.4 7.8.2 7.8.0 7.8.1 7.7.0 7.6.3 7.6.4 7.6.1 7.6.2 7.6.0 7.5.3 trunk 1.0.0 1.1.0 1.1.1 1.2.0 1.3.0 1.4.0 1.4.1 1.5.0 1.6.0 1.6.1 1.7.0 1.8.0 1.8.1 All 219 releases
shortcodes-ultimate / shortcodes-ultimate.php

shortcodes-ultimate.php in Shortcodes Ultimate – Content Elements 7.8.4, at shortcodes-ultimate.php

70 lines 2.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Plugin Name: Shortcodes Ultimate
5 * Plugin URI: https://getshortcodes.com/
6 * Author: Vova Anokhin
7 * Author URI: https://getshortcodes.com/
8 * Description: Create tabs, accordions, buttons, sliders, boxes and reusable content elements with 50+ WordPress shortcodes
9 * Text Domain: shortcodes-ultimate
10 * Domain Path: /languages
11 * License: GPLv3
12 * Version: 7.8.4
13 * Requires PHP: 7.0
14 * Requires at least: 6.0
15 * Tested up to: 7.0
16 *
17 */
18 if ( !defined( 'ABSPATH' ) ) {
19 exit;
20 }
21 if ( function_exists( 'su_fs' ) ) {
22 su_fs()->set_basename( false, __FILE__ );
23 } else {
24 // DO NOT REMOVE THIS IF, IT IS ESSENTIAL FOR THE `function_exists` CALL ABOVE TO PROPERLY WORK.
25 if ( !function_exists( 'su_fs' ) ) {
26 if ( !function_exists( 'su_fs' ) ) {
27 // Create a helper function for easy SDK access.
28 function su_fs() {
29 global $su_fs;
30 if ( !isset( $su_fs ) ) {
31 // Include Freemius SDK.
32 require_once dirname( __FILE__ ) . '/freemius/start.php';
33 $su_fs = fs_dynamic_init( array(
34 'id' => '7180',
35 'slug' => 'shortcodes-ultimate',
36 'premium_slug' => 'shortcodes-ultimate-pro',
37 'type' => 'plugin',
38 'public_key' => 'pk_c9ecad02df10f17e67880ac6bd8fc',
39 'is_premium' => false,
40 'premium_suffix' => 'Pro',
41 'has_addons' => false,
42 'has_paid_plans' => true,
43 'menu' => array(
44 'slug' => 'shortcodes-ultimate',
45 'first-path' => 'admin.php?page=shortcodes-ultimate',
46 'contact' => false,
47 'support' => false,
48 ),
49 'opt_in_moderation' => array(
50 'new' => 100,
51 'updates' => 0,
52 'localhost' => true,
53 ),
54 'is_live' => true,
55 'is_org_compliant' => true,
56 ) );
57 }
58 return $su_fs;
59 }
60
61 // Init Freemius.
62 su_fs();
63 // Signal that SDK was initiated.
64 do_action( 'su_fs_loaded' );
65 }
66 }
67 define( 'SU_PLUGIN_FILE', __FILE__ );
68 define( 'SU_PLUGIN_VERSION', '7.8.4' );
69 require_once dirname( __FILE__ ) . '/plugin.php';
70 }