mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
18 lines
284 B
PHP
18 lines
284 B
PHP
<?php
|
|
|
|
/**
|
|
* @api
|
|
* @package LoginExtensibilityAPI
|
|
* @since 2.7.0
|
|
*/
|
|
interface iLoginExtension
|
|
{
|
|
/**
|
|
* Return the list of supported login modes for this plugin
|
|
*
|
|
* @return array of supported login modes
|
|
* @api
|
|
*/
|
|
public function ListSupportedLoginModes();
|
|
}
|