Esempio n. 1
0
 public function __construct()
 {
     // Addon information
     $this->set_provider(array('name' => __('Standard Elements', WR_MEGAMENU_TEXTDOMAIN), 'file' => __FILE__, 'shortcode_dir' => WR_MEGAMENU_ROOT_PATH . 'shortcodes', 'js_shortcode_dir' => 'assets/woorockets/js/shortcodes'));
     //$this->custom_assets();
     // call parent construct
     parent::__construct();
     add_filter('plugin_action_links', array(&$this, 'plugin_action_links'), 10, 2);
 }
Esempio n. 2
0
 /**
  * Get Constant value of Constant defines core version required
  *
  * @param array  $provider
  * @param string $addon_file
  *
  * @return string
  */
 static function core_version_requied_value($provider, $addon_file)
 {
     // include defines.php from provider plugin folder, where defines core version required by addon
     if (file_exists($provider['path'] . 'defines.php')) {
         include_once $provider['path'] . 'defines.php';
     }
     // get constant name defines core version required
     $constant = WR_Megamenu_Addon::core_version_constant($addon_file);
     // get value of core version required
     return defined($constant) ? constant($constant) : NULL;
 }