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 / plugin.php

plugin.php in Shortcodes Ultimate – Content Elements 7.8.4, at plugin.php

18 lines 864 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 require_once dirname( __FILE__ ) . '/includes/class-shortcodes-ultimate-activator.php';
4 require_once dirname( __FILE__ ) . '/includes/class-shortcodes-ultimate.php';
5 register_activation_hook( SU_PLUGIN_FILE, array('Shortcodes_Ultimate_Activator', 'activate') );
6 call_user_func( function () {
7 // don't run the plugin during activation (after plugins_loaded)
8 if ( did_action( 'plugins_loaded' ) ) {
9 return;
10 }
11 add_action( 'init', function () {
12 $plugin = new Shortcodes_Ultimate(SU_PLUGIN_FILE, SU_PLUGIN_VERSION, 'shortcodes-ultimate-');
13 do_action( 'su/ready', $plugin );
14 }, 1 );
15 require_once dirname( __FILE__ ) . '/admin/class-shortcodes-ultimate-widget.php';
16 $custom_widget = new Shortcodes_Ultimate_Widget('shortcodes-ultimate-');
17 add_action( 'widgets_init', array($custom_widget, 'register') );
18 } );