| 1 | <?php |
||
| 16 | class TemplateCombo extends Combo |
||
| 17 | { |
||
| 18 | /** {@inheritdoc} */ |
||
| 19 | public $name = 'template'; |
||
| 20 | |||
| 21 | /** {@inheritdoc} */ |
||
| 22 | public $type = 'ticket/template'; |
||
| 23 | |||
| 24 | /** {@inheritdoc} */ |
||
| 25 | public $url = '@ticket/template/search'; |
||
| 26 | |||
| 27 | /** {@inheritdoc} */ |
||
| 28 | public $_return = ['id']; |
||
| 29 | |||
| 30 | /** {@inheritdoc} */ |
||
| 31 | public $_rename = ['text' => 'name']; |
||
| 32 | |||
| 33 | public function getPluginOptions($options = []) |
||
| 41 | } |
||
| 42 |