mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 18:32:41 +01:00
3093d1663d
Summary: - Implements `javelin_tag()`, which is `javelin_render_tag()` on top of `phutil_tag()` instead of `phutil_render_tag()`. - Manually converts all or almost all of the trivial callsites. Test Plan: - Site does not seem any more broken than before. Reviewers: vrana Reviewed By: vrana CC: aran Differential Revision: https://secure.phabricator.com/D4639
66 lines
1.6 KiB
PHP
66 lines
1.6 KiB
PHP
<?php
|
|
|
|
final class JavelinUIExample extends PhabricatorUIExample {
|
|
|
|
public function getName() {
|
|
return 'Javelin UI';
|
|
}
|
|
|
|
public function getDescription() {
|
|
return 'Here are some Javelin UI elements that you could use.';
|
|
}
|
|
|
|
public function renderExample() {
|
|
$request = $this->getRequest();
|
|
$user = $request->getUser();
|
|
|
|
// toggle-class
|
|
|
|
$container_id = celerity_generate_unique_node_id();
|
|
$button_red_id = celerity_generate_unique_node_id();
|
|
$button_blue_id = celerity_generate_unique_node_id();
|
|
|
|
$button_red = javelin_tag(
|
|
'a',
|
|
array(
|
|
'class' => 'button',
|
|
'sigil' => 'jx-toggle-class',
|
|
'href' => '#',
|
|
'id' => $button_red_id,
|
|
'meta' => array(
|
|
'map' => array(
|
|
$container_id => 'jxui-red-border',
|
|
$button_red_id => 'jxui-active',
|
|
),
|
|
),
|
|
),
|
|
'Toggle Red Border');
|
|
|
|
$button_blue = javelin_tag(
|
|
'a',
|
|
array(
|
|
'class' => 'button jxui-active',
|
|
'sigil' => 'jx-toggle-class',
|
|
'href' => '#',
|
|
'id' => $button_blue_id,
|
|
'meta' => array(
|
|
'state' => true,
|
|
'map' => array(
|
|
$container_id => 'jxui-blue-background',
|
|
$button_blue_id => 'jxui-active',
|
|
),
|
|
),
|
|
),
|
|
'Toggle Blue Background');
|
|
|
|
$div = phutil_tag(
|
|
'div',
|
|
array(
|
|
'id' => $container_id,
|
|
'class' => 'jxui-example-container jxui-blue-background',
|
|
),
|
|
array($button_red, $button_blue));
|
|
|
|
return array($div);
|
|
}
|
|
}
|