mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-18 17:58:37 +01:00
Summary: See inlines. Test Plan: See inlines. Reviewers: vrana Reviewed By: vrana CC: aran Maniphest Tasks: T2432 Differential Revision: https://secure.phabricator.com/D4767
16 lines
330 B
PHP
16 lines
330 B
PHP
<?php
|
|
|
|
final class AphrontKeyboardShortcutsAvailableView extends AphrontView {
|
|
|
|
public function render() {
|
|
return phutil_tag(
|
|
'div',
|
|
array(
|
|
'class' => 'keyboard-shortcuts-available',
|
|
),
|
|
pht(
|
|
'Press %s to show keyboard shortcuts.',
|
|
phutil_tag('strong', array(), '?')));
|
|
}
|
|
|
|
}
|