dbms_init...1

This commit is contained in:
최준흠 2025-05-23 16:23:27 +09:00
parent b7ceb3255a
commit 90f3f3d6d8

View File

@ -65,32 +65,6 @@ class ServiceController extends CustomerController
}
return $this->_ipService;
}
protected function getFormFieldOption(string $field, array $options): array
{
switch ($field) {
case 'lineinfo_uid':
$temps = [];
foreach ($this->getLineService()->getEntities() as $entity) {
$temps[$entity->getPK()] = $entity->getTitle();
}
$options[$field] = $temps;
// dd($options);
break;
case 'serverinfo_uid':
$temps = [];
foreach ($this->getServerService()->getEntities() as $entity) {
$temps[$entity->getPK()] = $entity->getTitle();
}
$options[$field] = $temps;
// dd($options);
break;
default:
$options = parent::getFormFieldOption($field, $options);
break;
}
// dd($options);
return $options;
}
//Index,FieldForm관련
protected function create_process(): mixed