芝麻web文件管理V1.00
编辑当前文件:/home/royashxg/public_html/wp-content/plugins/fluentform/app/Modules/Component/BaseComponent.php
name(); return $types; } /** * The keywords to search the element in the editor and * the derived class will override this method if needed. * * @return array */ public function searchBy() { return [$this->name(), $this->label()]; } /** * Transform the element's submitted value saved in database * to show it properly/formatted in entry page if needed and * this method implementation optional so a default method is * implemented here and original value is returned. In any case * if any customization of the value is needed then the derived * class will override it and will format and return the the value. * * @param mixed $value [description] * @param string $field * @param int $formId * * @return mixed $value */ public function formatEntryValue($value, $field, $formId) { return $value; } }