当前位置: 首页>>代码示例>>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;未经允许,请勿转载。