mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-28 06:34:14 +01:00
16 lines
224 B
PHP
16 lines
224 B
PHP
<?php
|
|
|
|
/**
|
|
* @api
|
|
* @package LoginExtensibilityAPI
|
|
* @since 2.7.0
|
|
*/
|
|
interface iLogoutExtension extends iLoginExtension
|
|
{
|
|
/**
|
|
* Execute all actions to log out properly
|
|
* @api
|
|
*/
|
|
public function LogoutAction();
|
|
}
|