當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Form::populate方法代碼示例

本文整理匯總了PHP中Zend\Form\Form::populate方法的典型用法代碼示例。如果您正苦於以下問題:PHP Form::populate方法的具體用法?PHP Form::populate怎麽用?PHP Form::populate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Zend\Form\Form的用法示例。


在下文中一共展示了Form::populate方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: populate

 /**
  * Set up values from array
  * @param array $values
  * @return Zend_Form
  */
 public function populate(array $values)
 {
     if (!empty($values['sysmap_id'])) {
         $this->_appendParamsSubform($values['sysmap_id']);
     } elseif (!empty($values['hash'])) {
         $mapitem = $this->model->getParentByHash($values['hash']);
         $this->_appendParamsSubform($mapitem->hash);
     }
     return parent::populate($values);
 }
開發者ID:zendmaniacs,項目名稱:zly-sysmap,代碼行數:15,代碼來源:Extend.php

示例2: populate

 public function populate(array $values)
 {
     if (!empty($values['id'])) {
         $this->setLegend('Edit layout');
     }
     if (!empty($values['points'])) {
         $points = $values['points'];
         unset($values['points']);
         foreach ($points as $point) {
             $values['map_id'][] = $point->getMapId();
         }
     }
     return parent::populate($values);
 }
開發者ID:zendmaniacs,項目名稱:zly-templater,代碼行數:14,代碼來源:Layout.php

示例3: testCanPopulateCheckboxOptionsFromPostedData

 /**
  * @group ZF-2828
  */
 public function testCanPopulateCheckboxOptionsFromPostedData()
 {
     $form = new Form(array('elements' => array('100_1' => array('MultiCheckbox', array('multiOptions' => array('100_1_1' => 'Agriculture', '100_1_2' => 'Automotive', '100_1_12' => 'Chemical', '100_1_13' => 'Communications'), 'required' => true)))));
     $data = array('100_1' => array('100_1_1', '100_1_2', '100_1_12', '100_1_13'));
     $form->populate($data);
     $html = $form->render($this->getView());
     foreach ($form->getElement('100_1')->getMultiOptions() as $key => $value) {
         if (!preg_match('#(<input[^>]*' . $key . '[^>]*>)#', $html, $m)) {
             $this->fail('Missing input for a given multi option: ' . $html);
         }
         $this->assertContains('checked="checked"', $m[1]);
     }
 }
開發者ID:bradley-holt,項目名稱:zf2,代碼行數:16,代碼來源:MultiCheckboxTest.php

示例4: testFormsShouldAllowResetting

 /**
  * @group ZF-3227
  */
 public function testFormsShouldAllowResetting()
 {
     $form = new Form();
     $foo = new \Zend\Form\SubForm(array('name' => 'foo', 'elements' => array('one' => 'text', 'two' => 'text')));
     $form->addElement('text', 'bar')->addElement('text', 'baz')->addElement('text', 'bat')->addDisplayGroup(array('bar', 'bat'), 'barbat')->addSubForm($foo, 'foo');
     $values = array('bar' => 'Bar Value', 'baz' => 'Baz Value', 'bat' => 'Bat Value', 'foo' => array('one' => 'One Value', 'two' => 'Two Value'));
     $form->populate($values);
     $test = $form->getValues();
     $this->assertEquals($values, $test);
     $form->reset();
     $test = $form->getValues();
     $this->assertNotEquals($values, $test);
     $this->assertEquals(0, array_sum($test));
 }
開發者ID:rafalwrzeszcz,項目名稱:zf2,代碼行數:17,代碼來源:FormTest.php


注:本文中的Zend\Form\Form::populate方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。