Files
iTop/sources/Application/UI/Hook/iKeyboardShortcut.php
2021-12-31 15:44:59 +01:00

19 lines
373 B
PHP

<?php
/**
* @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;
}