mirror of
https://github.com/Aviortheking/DeltaCMS.git
synced 2025-04-23 03:12:14 +00:00
they now lives by themselves when before they where highly connected to Form.php
27 lines
429 B
PHP
27 lines
429 B
PHP
<?php
|
|
|
|
namespace AdminPanel\Form;
|
|
|
|
use AdminPanel\AdminPanel;
|
|
|
|
class ChoiceInput extends AbstractInput
|
|
{
|
|
public function getOptionsList(): array
|
|
{
|
|
return array_merge(
|
|
parent::getOptionsList(),
|
|
array(
|
|
'choices'
|
|
)
|
|
);
|
|
}
|
|
|
|
public function getAttributesList(): array
|
|
{
|
|
return array(
|
|
'name',
|
|
'id'
|
|
);
|
|
}
|
|
}
|