vhost init...2

This commit is contained in:
최준흠 2024-05-14 10:18:09 +09:00
parent 1f1d3c1c67
commit b0ea9482c6
2 changed files with 1 additions and 14 deletions

View File

@ -30,6 +30,5 @@ return [
"ISREPLY" => $roles, "ISREPLY" => $roles,
"ISUPLOAD" => $roles, "ISUPLOAD" => $roles,
"ISDOWNLOAD" => $roles, "ISDOWNLOAD" => $roles,
"STATUS" => $roles,
'STATUS' => ['use' => '사용', 'unuse' => '사용않함'], 'STATUS' => ['use' => '사용', 'unuse' => '사용않함'],
]; ];

View File

@ -63,7 +63,7 @@ abstract class BaseModel extends Model
abstract public function getTitleField(): string; abstract public function getTitleField(): string;
abstract public function getEntity($conditions): BaseEntity; abstract public function getEntity($conditions): BaseEntity;
final protected function getClassName() final protected function getClassName(): string
{ {
return $this->_className; return $this->_className;
} }
@ -191,18 +191,6 @@ abstract class BaseModel extends Model
} }
return $options; return $options;
} }
//Field별 Form Option용
// final public function getFieldFormOptions(array $fields): array
// {
// $fieldFormOptions = array();
// foreach ($fields as $field) {
// if (!is_string($field)) {
// throw new \Exception(__FUNCTION__ . "에서 {$this->getClassName()}의 Field:{$field}가 string 아닙니다.\n" . var_export($fields, true));
// }
// $fieldFormOptions[$field] = $this->getFieldFormOption($field);
// }
// return $fieldFormOptions;
// }
//create , modify 직전 작업용 작업 //create , modify 직전 작업용 작업
protected function changeFormData(string $action, string $field, array $formDatas, $entity): BaseEntity protected function changeFormData(string $action, string $field, array $formDatas, $entity): BaseEntity