Differential D16228 Diff 39036 src/applications/tokens/controller/PhabricatorTokenGiveController.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/tokens/controller/PhabricatorTokenGiveController.php
| Show First 20 Lines • Show All 84 Lines • ▼ Show 20 Lines | foreach ($tokens as $token) { | ||||
| 'meta' => array( | 'meta' => array( | ||||
| 'tip' => $token->getName(), | 'tip' => $token->getName(), | ||||
| ), | ), | ||||
| ), | ), | ||||
| array( | array( | ||||
| $aural, | $aural, | ||||
| $token->renderIcon(), | $token->renderIcon(), | ||||
| )); | )); | ||||
| if ((++$ii % 4) == 0) { | if ((++$ii % 6) == 0) { | ||||
| $buttons[] = phutil_tag('br'); | $buttons[] = phutil_tag('br'); | ||||
| } | } | ||||
| } | } | ||||
| $buttons = phutil_tag( | $buttons = phutil_tag( | ||||
| 'div', | 'div', | ||||
| array( | array( | ||||
| 'class' => 'token-grid', | 'class' => 'token-grid', | ||||
| Show All 23 Lines | |||||