/**
  * @return HtmlEditorField_Readonly
  */
 public function performReadonlyTransformation()
 {
     $field = new HtmlEditorField_Readonly($this->name, $this->title, $this->value);
     $field->setForm($this->form);
     $field->dontEscape = true;
     return $field;
 }