Example #1
0
 /**
  * @depends testWhetherAUniqueFormIdIsBeingAdded
  */
 public function testWhetherAFormIsSentWithAUniqueFormIdBeingAdded()
 {
     $form = new Form();
     $form->setTokenDisabled();
     $form->create();
     $this->assertTrue($form->wasSent(array($form->getUidElementName() => $form->getElement($form->getUidElementName())->getValue())), 'Form::wasSent() does not return true in case a the form identification value is being sent');
 }
Example #2
0
 /**
  * Renders this widget via the given view and returns the
  * HTML as a string
  *
  * @return  string
  */
 public function render()
 {
     $form = new Form();
     $form->setAttrib('class', 'inline');
     $form->setMethod('GET');
     $form->setTokenDisabled();
     $form->setName($this->name);
     $form->addElement('select', 'sort', array('label' => 'Sort By', 'multiOptions' => $this->sortFields, 'class' => 'autosubmit'));
     $form->addElement('select', 'dir', array('multiOptions' => array('desc' => 'Desc', 'asc' => 'Asc'), 'class' => 'autosubmit'));
     $sort = $form->getElement('sort')->setDecorators(array('ViewHelper'));
     $dir = $form->getElement('dir')->setDecorators(array('ViewHelper'));
     // $form->enableAutoSubmit(array('sort', 'dir'));
     // $form->addElement($this->createFallbackSubmitButton());
     if ($this->request) {
         $form->setAction($this->request->getRequestUri());
         $form->populate($this->request->getParams());
     }
     return $form;
 }
Example #3
0
 /**
  * Render this widget
  *
  * @return string                   The HTML of the widget as a string
  */
 public function render()
 {
     $view = $this->view();
     $form = new Form();
     $form->setAttrib('class', 'inline');
     $form->setMethod('GET');
     $form->setAction(Url::fromPath('/filter'));
     $form->setTokenDisabled();
     $form->addElement('text', 'query', array('name' => 'query', 'placeholder' => 'Add filter'));
     $query = $form->getElement('query')->setDecorators(array('ViewHelper'));
     $badges = new FilterBadgeRenderer($this->initialFilter);
     return '<div class="pull-right">' . $badges->render($view) . '</div>' . $form;
     $html = str_replace('{{FORM}}', $form->render($view), self::$TPL);
     $html = '<div class="input-append">' . $html . '</div>';
     return str_replace('{{BADGES}}', $badges->render($view), $html);
 }
Example #4
0
 /**
  * Render this SortBox as HTML
  *
  * @return  string
  */
 public function render()
 {
     $form = new Form();
     $form->setTokenDisabled();
     $form->setName($this->name);
     $form->setAttrib('class', 'sort-control inline');
     $form->addElement('select', 'sort', array('autosubmit' => true, 'label' => $this->view()->translate('Sort by'), 'multiOptions' => $this->sortFields));
     $form->getElement('sort')->setDecorators(array(array('ViewHelper'), array('Label')));
     $form->addElement('select', 'dir', array('autosubmit' => true, 'multiOptions' => array('asc' => 'Asc', 'desc' => 'Desc'), 'decorators' => array(array('ViewHelper'))));
     if ($this->request) {
         $form->populate($this->request->getParams());
     }
     return $form;
 }