'Workflow', ]; public function isAjaxEditable() { return false; } public function getFieldDataType() { if (isset($this->customDataTypes[$this->name])) { return $this->customDataTypes[$this->name]; } return parent::getFieldDataType(); } public function getDisplayValue($value, $record = false, $recordInstance = false) { if ('body' === $this->get('name')) { return strip_tags($value); } return parent::getDisplayValue($value, $record, $recordInstance); // TODO: Change the autogenerated stub } }