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