示例#1
0
 /**
  * renderValidationJS
  *
  * @return bool|string
  */
 public function renderValidationJS()
 {
     if ($this->htmlEditor && is_object($this->htmlEditor) && method_exists($this->htmlEditor, 'renderValidationJS')) {
         if (!isset($this->htmlEditor->isEnabled) || $this->htmlEditor->isEnabled) {
             return $this->htmlEditor->renderValidationJS();
         }
     }
     return parent::renderValidationJS();
 }