mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-25 05:14:12 +01:00
We configure global sources directory in symfony configuration file except the directory Application/WebPage (potential impacts)
21 lines
418 B
PHP
21 lines
418 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;
|
|
} |