1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-03-10 19:34:51 +01:00
phorge-phorge/src/view/control/AphrontTokenizerTemplateView.php

108 lines
2.2 KiB
PHP
Raw Normal View History

2011-03-22 20:41:02 -07:00
<?php
final class AphrontTokenizerTemplateView extends AphrontView {
2011-03-22 20:41:02 -07:00
private $value;
private $name;
private $id;
public function setID($id) {
$this->id = $id;
return $this;
}
public function setValue(array $value) {
assert_instances_of($value, 'PhabricatorObjectHandle');
2011-03-22 20:41:02 -07:00
$this->value = $value;
return $this;
}
public function getValue() {
return $this->value;
}
public function setName($name) {
$this->name = $name;
return $this;
}
public function getName() {
return $this->name;
}
public function render() {
require_celerity_resource('aphront-tokenizer-control-css');
$id = $this->id;
$name = $this->getName();
$values = nonempty($this->getValue(), array());
$tokens = array();
foreach ($values as $key => $value) {
$tokens[] = $this->renderToken(
$value->getPHID(),
$value->getFullName(),
$value->getTypeIcon());
2011-03-22 20:41:02 -07:00
}
$input = javelin_tag(
2011-03-22 20:41:02 -07:00
'input',
array(
'mustcapture' => true,
'name' => $name,
'class' => 'jx-tokenizer-input',
'sigil' => 'tokenizer-input',
2011-03-22 20:41:02 -07:00
'style' => 'width: 0px;',
'disabled' => 'disabled',
'type' => 'text',
));
$content = $tokens;
$content[] = $input;
$content[] = phutil_tag('div', array('style' => 'clear: both;'), '');
return phutil_tag(
2011-03-22 20:41:02 -07:00
'div',
array(
'id' => $id,
'class' => 'jx-tokenizer-container',
),
$content);
2011-03-22 20:41:02 -07:00
}
private function renderToken($key, $value, $icon) {
2011-03-22 20:41:02 -07:00
$input_name = $this->getName();
if ($input_name) {
$input_name .= '[]';
}
if ($icon) {
$value = array(
phutil_tag(
'span',
array(
'class' => 'phui-icon-view sprite-status status-'.$icon,
)),
$value);
}
return phutil_tag(
2011-03-22 20:41:02 -07:00
'a',
array(
'class' => 'jx-tokenizer-token',
),
array(
$value,
phutil_tag(
'input',
array(
'type' => 'hidden',
'name' => $input_name,
'value' => $key,
)),
phutil_tag('span', array('class' => 'jx-tokenizer-x-placeholder'), ''),
));
2011-03-22 20:41:02 -07:00
}
}