* @since MCMS 1.1.0.0 */ interface iInstanceModule { /** * Will be called when a new instance of the module is created. */ public function createInstance($siteId, $instanceName, array $param = array()); /** * Will be called when a instance of the module is removed. */ public function removeInstance($siteId, $instanceName, array $param = array()); }