当前位置: 首页>>代码示例>>PHP>>正文


PHP Form::setMethod方法代码示例

本文整理汇总了PHP中Icinga\Web\Form::setMethod方法的典型用法代码示例。如果您正苦于以下问题:PHP Form::setMethod方法的具体用法?PHP Form::setMethod怎么用?PHP Form::setMethod使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Icinga\Web\Form的用法示例。


在下文中一共展示了Form::setMethod方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: render

 /**
  * Renders this widget and returns the HTML as a string
  *
  * @return  string
  */
 public function render()
 {
     $form = new Form();
     $form->setAttrib('class', 'inline');
     $form->setMethod('GET');
     $form->setUidDisabled();
     $form->setTokenDisabled();
     $form->setName($this->name);
     $form->addElement('select', $this->parameter, array('label' => $this->label, 'multiOptions' => $this->values, 'autosubmit' => true));
     if ($this->request) {
         $form->populate($this->request->getParams());
     }
     return $form;
 }
开发者ID:0svald,项目名称:icingaweb2,代码行数:19,代码来源:SelectBox.php

示例2: getRemoveForm

 /**
  * Render the form for removing a dashboard elemetn
  *
  * @return string                       The html representation of the form
  */
 protected function getRemoveForm()
 {
     // TODO: temporarily disabled, should point to a form asking for confirmal
     return '';
     $removeUrl = Url::fromPath('/dashboard/removecomponent', array('pane' => $this->pane->getName(), 'component' => $this->getTitle()));
     $form = new Form();
     $form->setMethod('POST');
     $form->setAttrib('class', 'inline');
     $form->setAction($removeUrl);
     $form->addElement(new Zend_Form_Element_Button('remove_pane_btn', array('class' => 'link-like pull-right', 'type' => 'submit', 'label' => 'x')));
     return $form;
 }
开发者ID:vbereza,项目名称:icinga2-migration,代码行数:17,代码来源:Component.php

示例3: render

 /**
  * 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);
 }
开发者ID:vbereza,项目名称:icinga2-migration,代码行数:21,代码来源:FilterBox.php

示例4: render

 /**
  * 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;
 }
开发者ID:vbereza,项目名称:icinga2-migration,代码行数:25,代码来源:SortBox.php


注:本文中的Icinga\Web\Form::setMethod方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。