public function ckeditorElement($name, $value = null, $attribs = null)
 {
     $helper = new Zend_View_Helper_FormTextarea();
     $helper->setView($this->view);
     //add ckeditor script inside the header
     $this->view->headScript()->appendFile($this->_sCkeditorDefaultPath);
     $this->html .= $helper->formTextarea($name, $value = null, $attribs = null);
     //add inline script to bottom of the body
     $scripts = $this->view->inlineScript();
     $scripts->appendScript("CKEDITOR.replace( '" . $name . "' );");
     return $this->html;
 }
 /** The function to return
  * @param string $name
  * @param string $value
  * @param array $params
  * @param array $attribs
  * @return string
  * @access public
  */
 public function formCKEditor($name, $value = null, $params = null, $attribs = null)
 {
     $hTextA = new Zend_View_Helper_FormTextarea();
     $hTextA->setView($this->view);
     $xhtml = $hTextA->formTextarea($name, $value, $attribs);
     $this->view->jQuery()->addJavascript('$(document).ready(function () {$("#' . $this->_normalizeId($name) . '").ckeditor(' . (!is_null($params) ? 'function () {},' . Zend_Json_Encoder::encode($params) : '') . ')});');
     if (self::$set == false) {
         $this->view->jQuery()->addJavascriptFile($this->view->baseUrl() . '/js/ckeditor/ckeditor.js');
         $this->view->jQuery()->addJavascriptFile($this->view->baseUrl() . '/js/ckeditor/adapters/jquery.js');
         self::$set = true;
     }
     return $xhtml;
 }
 /**
  * Generates a 'textarea' element.
  *
  * @access public
  *
  * @param string|array $name If a string, the element name.  If an
  * array, all other parameters are ignored, and the array elements
  * are used in place of added parameters.
  *
  * @param mixed $value The element value.
  *
  * @param array $attribs Attributes for the element tag.
  *
  * @return string The element XHTML.
  */
 public function formTextareaOverwrite($name, $value = null, $attribs = null)
 {
     $info = $this->_getInfo($name, $value, $attribs);
     extract($info);
     // name, value, attribs, options, listsep, disabled
     $viewHelperFormCheckbox = new Zend_View_Helper_FormCheckbox();
     $viewHelperFormCheckbox->setView($this->view);
     $viewHelperFormElement = new Zend_View_Helper_FormTextarea();
     $viewHelperFormElement->setView($this->view);
     $checked = '';
     if ($attribs['overwrite']) {
         $checked = 'checked';
         $disabled = true;
         unset($attribs['overwrite']);
     } else {
         $disabled = false;
         if (isset($attribs['class']) && $attribs['class'] != '') {
             $attribs['class'] = $attribs['class'] . ' disabled';
         } else {
             $attribs['class'] = 'disabled';
         }
     }
     $separator = '';
     if (isset($attribs['separator'])) {
         $separator = $attribs['separator'];
         unset($attribs['separator']);
     }
     $xhtml = '';
     $xhtml .= '<div class="checkboxTextFieldCombo">';
     $xhtml .= $viewHelperFormCheckbox->formCheckbox($name . '[overwrite]', null, array_merge($attribs, array('checked' => $checked, 'class' => 'checkbox text-overwrite-checkbox')));
     $xhtml .= ' ' . $separator;
     if (!$disabled) {
         $xhtml .= $viewHelperFormElement->formTextarea($name . '[value]', $value, array_merge($attribs, array('disabled' => 'disabled')));
     } else {
         $xhtml .= $viewHelperFormElement->formTextarea($name . '[value]', $value, $attribs);
     }
     $xhtml .= '</div>';
     return $xhtml;
 }