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


PHP JFormFieldGroupedList::setup方法代碼示例

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


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

示例1: testGetInput

	/**
	 * Test the getInput method.
	 *
	 * @return  void
	 *
	 * @since   12.1
	 */
	public function testGetInput()
	{
		$form = new JFormInspector('form1');

		$this->assertThat(
			$form->load('<form><field name="groupedlist" type="groupedlist" /></form>'),
			$this->isTrue(),
			'Line:' . __LINE__ . ' XML string should load successfully.'
		);

		$field = new JFormFieldGroupedList($form);

		$this->assertThat(
			$field->setup($form->getXml()->field, 'value'),
			$this->isTrue(),
			'Line:' . __LINE__ . ' The setup method should return true.'
		);

		$this->assertThat(
			strlen($field->input),
			$this->greaterThan(0),
			'Line:' . __LINE__ . ' The getInput method should return something without error.'
		);

		// TODO: Should check all the attributes have come in properly.
	}
開發者ID:robschley,項目名稱:joomla-platform,代碼行數:33,代碼來源:JFormFieldGroupedListTest.php

示例2: setup

 /**
  * Method to attach a JForm object to the field.
  *
  * @param   SimpleXMLElement  $element  The SimpleXMLElement object representing the <field /> tag for the form field object.
  * @param   mixed             $value    The form field value to validate.
  * @param   string            $group    The field name group control value. This acts as as an array container for the field.
  *                                      For example if the field has name="foo" and the group value is set to "bar" then the
  *                                      full field name would end up being "bar[foo]".
  *
  * @return  boolean  True on success.
  *
  * @see     JFormField::setup()
  */
 public function setup(SimpleXMLElement $element, $value, $group = null)
 {
     $return = parent::setup($element, $value, $group);
     if ($return) {
         $this->keyField = (string) $this->element['key_field'];
     }
     return $return;
 }
開發者ID:JKoelman,項目名稱:JEM-3,代碼行數:21,代碼來源:timezone.php

示例3: setup

 /**
  * Method to attach a JForm object to the field.
  *
  * @param   SimpleXMLElement  $element  The SimpleXMLElement object representing the <field /> tag for the form field object.
  * @param   mixed             $value    The form field value to validate.
  * @param   string            $group    The field name group control value. This acts as as an array container for the field.
  *                                      For example if the field has name="foo" and the group value is set to "bar" then the
  *                                      full field name would end up being "bar[foo]".
  *
  * @return  boolean  True on success.
  *
  * @see     JFormField::setup()
  * @since   3.2
  */
 public function setup(SimpleXMLElement $element, $value, $group = null)
 {
     $result = parent::setup($element, $value, $group);
     if ($result == true) {
         // Get the clientName template.
         $this->clientName = $this->element['client'] ? (string) $this->element['client'] : 'site';
         $this->template = (string) $this->element['template'];
     }
     return $result;
 }
開發者ID:01J,項目名稱:skazkipronebo,代碼行數:24,代碼來源:templatestyle.php

示例4: setup

 /**
  * Method to attach a JForm object to the field.
  *
  * @param   SimpleXMLElement  $element  The SimpleXMLElement object representing the <field /> tag for the form field object.
  * @param   mixed             $value    The form field value to validate.
  * @param   string            $group    The field name group control value. This acts as as an array container for the field.
  *                                      For example if the field has name="foo" and the group value is set to "bar" then the
  *                                      full field name would end up being "bar[foo]".
  *
  * @return  boolean  True on success.
  *
  * @see     JFormField::setup()
  * @since   3.2
  */
 public function setup(SimpleXMLElement $element, $value, $group = null)
 {
     $result = parent::setup($element, $value, $group);
     if ($result == true) {
         $this->menuType = (string) $this->element['menu_type'];
         $this->published = $this->element['published'] ? explode(',', (string) $this->element['published']) : array();
         $this->disable = $this->element['disable'] ? explode(',', (string) $this->element['disable']) : array();
         $this->language = $this->element['language'] ? explode(',', (string) $this->element['language']) : array();
     }
     return $result;
 }
開發者ID:grlf,項目名稱:eyedock,代碼行數:25,代碼來源:menuitem.php


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