Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

jsarnowski / jsarnowski/flexible-shipping-pro   php

Repository URL to install this package:

Version: 1.11.1 

/ wpdesk / wp-builder / src / Plugin / Activateable.php

<?php

namespace FSProVendor\WPDesk\PluginBuilder\Plugin;

/**
 * Tag the plugin with this ingterface to hook it to the WordPress activation hook.
 *
 * Note: works from plugin flow ^2.2.
 *
 * @package WPDesk\PluginBuilder\Plugin
 */
interface Activateable
{
    /**
     * Plugin activated in WordPress. Do not execute directly.
     *
     * @return void
     */
    public function activate();
}