Example #1
0
 /**
  * 
  * @return JSolrForm
  */
 public static function getForm()
 {
     return JSolrForm::getInstance('com_jsolrsearch.search');
 }
Example #2
0
 /**
  * Override to use JSorlForm.
  * Method to get a form object.
  *
  * @param   string   $name     The name of the form.
  * @param   string   $source   The form source. Can be XML string if file flag is set to false.
  * @param   array    $options  Optional array of options for the form creation.
  * @param   boolean  $clear    Optional argument to force load a new form.
  * @param   string   $xpath    An optional xpath to search for the fields.
  *
  * @return  mixed  JForm object on success, False on error.
  *
  * @see     JForm
  * @since   11.1
  */
 protected function loadForm($name, $source = null, $options = array(), $clear = false, $xpath = false)
 {
     // Handle the optional arguments.
     $options['control'] = JArrayHelper::getValue($options, 'control', false);
     // Create a signature hash.
     $hash = md5($source . serialize($options));
     // Check if we can use a previously loaded form.
     if (isset($this->_forms[$hash]) && !$clear) {
         return $this->_forms[$hash];
     }
     // Get the form.
     JForm::addFieldPath(JPATH_BASE . '/libraries/jsolr/form/fields');
     try {
         $form = JSolrForm::getInstance($name, $source, $options, false, $xpath);
         //JSolrForm instead of JForm
         if (isset($options['load_data']) && $options['load_data']) {
             // Get the data for the form.
             $data = $this->loadFormData();
         } else {
             $data = array();
         }
         // Allow for additional modification of the form, and events to be triggered.
         // We pass the data because plugins may require it.
         $this->preprocessForm($form, $data);
         // Load the data into the form after the plugins have operated.
         $form->bind($data);
     } catch (Exception $e) {
         $this->setError($e->getMessage());
         return false;
     }
     // Store the form for later.
     $this->_forms[$hash] = $form;
     return $form;
 }