1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-02-18 17:58:37 +01:00
phorge-phorge/src/view/widget/AphrontKeyboardShortcutsAvailableView.php
epriestley 41e0f97c19 render_tag -> tag: forms / remarkup
Summary: See inlines.

Test Plan: See inlines.

Reviewers: vrana

Reviewed By: vrana

CC: aran

Maniphest Tasks: T2432

Differential Revision: https://secure.phabricator.com/D4767
2013-02-02 06:04:54 -08:00

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(), '?')));
}
}