/
home
/
assocoweys
/
comgk
/
wp-content
/
plugins
/
comcharitable
/
includes
/
interfaces
/
Upload File
HOME
<?php /** * Addon interface. * * This defines a strict interface that all Core Addons must implement * * @version 1.0.0 * @package Charitable/Interfaces/Charitable_Addon_Interface * @author Eric Daams * @copyright Copyright (c) 2019, Studio 164a * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } if ( ! interface_exists( 'Charitable_Addon_Interface' ) ) : /** * Charitable_Addon_Interface interface. * * @since 1.0.0 */ interface Charitable_Addon_Interface { /** * Activate the addon. * * @since 1.0.0 * * @return void */ public static function activate(); /** * Load the addon. * * @since 1.0.0 * * @return void */ public static function load(); } endif;