FOF30\Factory\Scaffolding\Layout\BrowseErector::getDoNotShow PHP Метод

getDoNotShow() приватный Метод

Create a list of fields which should not be shown in the form. These are fields like created/modified/locked user and time and other internal fields which should not be part of the form output.
private getDoNotShow ( ) : array
Результат array
    private function getDoNotShow()
    {
        $return = array();
        $checkFields = array('created_by', 'created_on', 'modified_by', 'modified_on', 'locked_by', 'locked_on');
        foreach ($checkFields as $checkField) {
            $return[] = $this->model->getFieldAlias($checkField);
        }
        return $return;
    }