isMethod() public method

Checks if the request method is the given one.
public isMethod ( $method ) : boolean
return boolean
コード例 #1
0
ファイル: Runtime.php プロジェクト: nette/forms
 /**
  * Renders form end.
  * @return string
  */
 public static function renderFormEnd(Form $form, $withTags = TRUE)
 {
     $s = '';
     if ($form->isMethod('get')) {
         foreach (preg_split('#[;&]#', parse_url($form->getElementPrototype()->action, PHP_URL_QUERY), NULL, PREG_SPLIT_NO_EMPTY) as $param) {
             $parts = explode('=', $param, 2);
             $name = urldecode($parts[0]);
             if (!isset($form[$name])) {
                 $s .= Html::el('input', ['type' => 'hidden', 'name' => $name, 'value' => urldecode($parts[1])]);
             }
         }
     }
     foreach ($form->getControls() as $control) {
         if ($control->getOption('type') === 'hidden' && !$control->getOption('rendered')) {
             $s .= $control->getControl();
         }
     }
     if (iterator_count($form->getComponents(TRUE, Nette\Forms\Controls\TextInput::class)) < 2) {
         $s .= "<!--[if IE]><input type=IEbug disabled style=\"display:none\"><![endif]-->\n";
     }
     return $s . ($withTags ? $form->getElementPrototype()->endTag() . "\n" : '');
 }
コード例 #2
0
ファイル: DefaultFormRenderer.php プロジェクト: nette/forms
 /**
  * Renders form begin.
  * @return string
  */
 public function renderBegin()
 {
     $this->counter = 0;
     foreach ($this->form->getControls() as $control) {
         $control->setOption('rendered', FALSE);
     }
     if ($this->form->isMethod('get')) {
         $el = clone $this->form->getElementPrototype();
         $query = parse_url($el->action, PHP_URL_QUERY);
         $el->action = str_replace("?{$query}", '', $el->action);
         $s = '';
         foreach (preg_split('#[;&]#', $query, NULL, PREG_SPLIT_NO_EMPTY) as $param) {
             $parts = explode('=', $param, 2);
             $name = urldecode($parts[0]);
             if (!isset($this->form[$name])) {
                 $s .= Html::el('input', ['type' => 'hidden', 'name' => $name, 'value' => urldecode($parts[1])]);
             }
         }
         return $el->startTag() . ($s ? "\n\t" . $this->getWrapper('hidden container')->setHtml($s) : '');
     } else {
         return $this->form->getElementPrototype()->startTag();
     }
 }