D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
sanghavirealty
/
www
/
wp-content
/
plugins
/
forminator
/
library
/
addon
/
contracts
/
Filename :
interface-addon.php
back
Copy
<?php /** * The Forminator_Addon_Interface class. * * @package Forminator */ /** * Interface Forminator_Addon_Interface * * @since 1.1 */ interface Forminator_Addon_Interface { const SHORT_TITLE_MAX_LENGTH = 10; /** * Get current instance * * @since 1.1 * @return self */ public static function get_instance(); /** * Action to execute on activation * * @since 1.1 * @return bool */ public function activate(); /** * Action to execute on de-activation * * @since 1.1 * @return bool */ public function deactivate(); }