File "ActivationAware.php"

Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/flexible-shipping-pro/vendor/wpdesk/wp-builder/src/Plugin/ActivationAware.php
File size: 428 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace WPDesk\PluginBuilder\Plugin;

/**
 * It means that this class is should know about SUBSCRIPTION activation
 *
 * @package WPDesk\PluginBuilder\Plugin
 */
interface ActivationAware {

    /**
     * Set the activation flag to true
     *
     * @return void
     */
    public function set_active();

    /**
     * Is subscription active?
     *
     * @return bool
     */
    public function is_active();

}