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


PHP HTML_QuickForm_text::HTML_QuickForm_text方法代码示例

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


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

示例1: __construct

 /**
  * Initialises form element with loaded options
  * @param string $elementName Element name
  * @param string $elementLabel Text for element's <label> tag
  * @param array(string => string) $attributes HTML attributes for the element
  * @param moodletxt_icon $icon Icon to be displayed with element
  * @version 2011070501
  * @since 2011070501
  */
 public function __construct($elementName = null, $elementLabel = null, $attributes = null, moodletxt_icon $icon = null)
 {
     parent::HTML_QuickForm_text($elementName, $elementLabel, $attributes);
     if ($icon != null) {
         $this->setIcon($icon);
     }
 }
开发者ID:educacionbe,项目名称:campus,代码行数:16,代码来源:QuickFormTextWithImage.php

示例2: foreach

 /**
  * Constructor
  *
  * @param string $elementName Element name
  * @param mixed $elementLabel Label(s) for an element
  * @param mixed $attributes Either a typical HTML attribute string or an associative array.
  * @param array $options data which need to be posted.
  */
 function MoodleQuickForm_url($elementName = null, $elementLabel = null, $attributes = null, $options = null)
 {
     global $CFG;
     require_once "{$CFG->dirroot}/repository/lib.php";
     $options = (array) $options;
     foreach ($options as $name => $value) {
         $this->_options[$name] = $value;
     }
     if (!isset($this->_options['usefilepicker'])) {
         $this->_options['usefilepicker'] = true;
     }
     parent::HTML_QuickForm_text($elementName, $elementLabel, $attributes);
 }
开发者ID:JP-Git,项目名称:moodle,代码行数:21,代码来源:url.php

示例3: MoodleQuickForm_username

 function MoodleQuickForm_username($elementName = null, $elementLabel = null, $attributes = null)
 {
     HTML_QuickForm_text::HTML_QuickForm_text($elementName, $elementLabel, $attributes);
     $this->_persistantFreeze = true;
     $this->setType('user');
 }
开发者ID:hmatulis,项目名称:RTL-BIDI-Hebrew-Moodle-Plugins,代码行数:6,代码来源:username.php

示例4:

 function MoodleQuickForm_text($elementName = null, $elementLabel = null, $attributes = null)
 {
     parent::HTML_QuickForm_text($elementName, $elementLabel, $attributes);
 }
开发者ID:vuchannguyen,项目名称:web,代码行数:4,代码来源:text.php

示例5: MoodleQuickForm_tccolourpopup

 public function MoodleQuickForm_tccolourpopup($elementname = null, $elementlabel = null, $attributes = null, $options = null)
 {
     parent::HTML_QuickForm_text($elementname, $elementlabel, $attributes);
 }
开发者ID:LearningPool,项目名称:moodle-format_topcoll,代码行数:4,代码来源:tc_colourpopup.php

示例6:

 function MoodleQuickForm_tccolourpopup($elementName = null, $elementLabel = null, $attributes = null, $options = null)
 {
     global $CFG;
     parent::HTML_QuickForm_text($elementName, $elementLabel, $attributes);
 }
开发者ID:oncampus,项目名称:mooin_course_format_octabs,代码行数:5,代码来源:tc_colourpopup.php

示例7:

 function HTML_QuickForm_yui_autocomplete($elementName = null, $elementLabel = null, $attributes = null, $properties = null)
 {
     parent::HTML_QuickForm_text($elementName, $elementLabel, $attributes);
     $this->updateAttributes(array('df:cloneable' => 1, 'onfocus' => 'buildYUIAutocomplete(this)', 'onblur' => 'updateYUIVocabulary(this)', 'autocomplete' => 'Off', 'id' => $elementName));
 }
开发者ID:minger11,项目名称:Pipeline,代码行数:5,代码来源:yui_autocomplete.php

示例8:

 /**
  * Constructor for the colour picker.
  *
  * @param string $elementName
  * @param string $elementLabel
  * @param array $attributes
  */
 function MoodleQuickForm_customcert_colourpicker($elementName = null, $elementLabel = null, $attributes = null)
 {
     parent::HTML_QuickForm_text($elementName, $elementLabel, $attributes);
 }
开发者ID:rezaies,项目名称:moodle-mod_customcert,代码行数:11,代码来源:colourpicker.php

示例9: MoodleQuickForm_gfcolourpopup

 public function MoodleQuickForm_gfcolourpopup($elementName = null, $elementLabel = null, $attributes = null, $options = null)
 {
     parent::HTML_QuickForm_text($elementName, $elementLabel, $attributes);
     $this->_type = 'colourtext';
 }
开发者ID:philippe-tcg,项目名称:moodle-format_grid,代码行数:5,代码来源:gf_colourpopup.php


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