data type */ public function getFieldDataType() { return $this->get('type'); } /** * Function to get instance of this model * @param $rowData * @return field model */ public static function getInstanceByRow($rowData) { $fieldModel = new self(); foreach ($rowData as $key => $value) { $fieldModel->set($key, $value); } return $fieldModel; } }