mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
15 lines
238 B
PHP
15 lines
238 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();
|
|
} |