2011-01-25 13:48:05 -08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Copyright 2011 Facebook, Inc.
|
|
|
|
|
*
|
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
class AphrontFormTokenizerControl extends AphrontFormControl {
|
|
|
|
|
|
|
|
|
|
private $datasource;
|
2011-02-05 12:33:53 -08:00
|
|
|
private $disableBehavior;
|
2011-02-08 10:53:59 -08:00
|
|
|
private $limit;
|
2011-01-25 13:48:05 -08:00
|
|
|
|
|
|
|
|
public function setDatasource($datasource) {
|
|
|
|
|
$this->datasource = $datasource;
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-04 22:45:42 -08:00
|
|
|
public function setDisableBehavior($disable) {
|
|
|
|
|
$this->disableBehavior = $disable;
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-25 13:48:05 -08:00
|
|
|
protected function getCustomControlClass() {
|
|
|
|
|
return 'aphront-form-control-tokenizer';
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-08 10:53:59 -08:00
|
|
|
public function setLimit($limit) {
|
|
|
|
|
$this->limit = $limit;
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-25 13:48:05 -08:00
|
|
|
protected function renderInput() {
|
|
|
|
|
$name = $this->getName();
|
2011-03-22 20:41:02 -07:00
|
|
|
$values = nonempty($this->getValue(), array());
|
2011-01-25 13:48:05 -08:00
|
|
|
|
2011-02-04 22:45:42 -08:00
|
|
|
if ($this->getID()) {
|
|
|
|
|
$id = $this->getID();
|
|
|
|
|
} else {
|
|
|
|
|
$id = celerity_generate_unique_node_id();
|
|
|
|
|
}
|
2011-01-25 13:48:05 -08:00
|
|
|
|
2011-03-22 20:41:02 -07:00
|
|
|
$template = new AphrontTokenizerTemplateView();
|
|
|
|
|
$template->setName($name);
|
|
|
|
|
$template->setID($id);
|
|
|
|
|
$template->setValue($values);
|
|
|
|
|
|
2011-02-04 22:45:42 -08:00
|
|
|
if (!$this->disableBehavior) {
|
|
|
|
|
Javelin::initBehavior('aphront-basic-tokenizer', array(
|
|
|
|
|
'id' => $id,
|
|
|
|
|
'src' => $this->datasource,
|
|
|
|
|
'value' => $values,
|
2011-02-08 10:53:59 -08:00
|
|
|
'limit' => $this->limit,
|
2011-02-04 22:45:42 -08:00
|
|
|
));
|
|
|
|
|
}
|
2011-01-25 13:48:05 -08:00
|
|
|
|
2011-03-22 20:41:02 -07:00
|
|
|
return $template->render();
|
2011-01-25 13:48:05 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|