mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-19 18:34:12 +01:00
22 lines
419 B
PHP
22 lines
419 B
PHP
<?php
|
|
|
|
namespace Combodo\iTop\Application\UI\Hook;
|
|
|
|
/**
|
|
* @since 3.0.0
|
|
*/
|
|
interface iKeyboardShortcut
|
|
{
|
|
/**
|
|
* Return default keys combination to trigger shortcut element
|
|
* @return array
|
|
*/
|
|
public static function GetShortcutKeys(): array;
|
|
|
|
/**
|
|
* Element to be triggered when shortcut key combination is pressed
|
|
* @return string
|
|
*/
|
|
public static function GetShortcutTriggeredElementSelector(): string;
|
|
}
|