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


PHP HTML_QuickForm_element::HTML_QuickForm_element方法代码示例

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


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

示例1: HTML_QuickForm_datepickerdate

 /**
  * Constructor
  */
 function HTML_QuickForm_datepickerdate($elementName = null, $elementLabel = null, $attributes = null)
 {
     global $myMinYear, $myMaxYear;
     $js_form_name = $attributes['form_name'];
     unset($attributes['form_name']);
     HTML_QuickForm_element::HTML_QuickForm_element($elementName, $elementLabel, $attributes);
     $this->_persistantFreeze = true;
     $this->_appendName = true;
     $this->_type = 'datepicker';
     $popup_link = '<a href="javascript:openCalendar(\'' . $js_form_name . '\',\'' . $elementName . '\')"><img src="' . api_get_path(WEB_IMG_PATH) . 'calendar_select.gif" style="vertical-align:middle;" alt="Select Date" /></a>';
     $special_chars = array('D', 'l', 'd', 'M', 'F', 'm', 'y', 'H', 'a', 'A', 's', 'i', 'h', 'g', ' ');
     foreach ($special_chars as $index => $char) {
         $popup_link = str_replace($char, "\\" . $char, $popup_link);
     }
     $lang_code = api_get_language_isocode();
     // If translation not available in PEAR::HTML_QuickForm_date, add the Chamilo-translation
     if (!array_key_exists($lang_code, $this->_locale)) {
         $this->_locale[$lang_code]['months_long'] = api_get_months_long();
     }
     $this->_options['format'] = 'dFY ' . $popup_link;
     $this->_options['minYear'] = date('Y') - 5;
     $this->_options['maxYear'] = date('Y') + 10;
     $this->_options['language'] = $lang_code;
     //$this->_options['addEmptyOption'] = true;
     //$this->_options['emptyOptionValue'] = 0;
     //$this->_options['emptyOptionText'] = ' -- ';
 }
开发者ID:ilosada,项目名称:chamilo-lms-icpna,代码行数:30,代码来源:datepickerdate.php

示例2: HTML_QuickForm_datepicker

    /**
     * Constructor
     */
    public function HTML_QuickForm_datepicker($elementName = null, $elementLabel = null, $attributes = null, $optionIncrement = null)
    {
        $js_form_name = api_get_unique_id();
        HTML_QuickForm_element::HTML_QuickForm_element($elementName, $elementLabel, $attributes);
        $this->_persistantFreeze = true;
        $this->_appendName = true;
        $this->_type = 'datepicker';
        $popup_link = '<a href="javascript:openCalendar(\'' . $js_form_name . '\',\'' . $elementName . '\')">
		<img src="' . api_get_path(WEB_IMG_PATH) . 'calendar_select.gif" style="vertical-align:middle;" alt="Select Date" /></a>';
        $hour_minute_devider = get_lang("HourMinuteDivider");
        $special_chars = array('D', 'l', 'd', 'M', 'F', 'm', 'y', 'H', 'a', 'A', 's', 'i', 'h', 'g', ' ');
        foreach ($special_chars as $char) {
            $popup_link = str_replace($char, "\\" . $char, $popup_link);
            $hour_minute_devider = str_replace($char, "\\" . $char, $hour_minute_devider);
        }
        $lang_code = api_get_language_isocode();
        // If translation not available in PEAR::HTML_QuickForm_date, add the Chamilo-translation
        if (!array_key_exists($lang_code, $this->_locale)) {
            $this->_locale[$lang_code]['months_long'] = api_get_months_long();
        }
        $this->_options['format'] = 'dFY ' . $popup_link . '   H ' . $hour_minute_devider . ' i';
        $this->_options['minYear'] = date('Y') - 5;
        $this->_options['maxYear'] = date('Y') + 10;
        $this->_options['language'] = $lang_code;
        if (isset($optionIncrement)) {
            $this->_options['optionIncrement']['i'] = intval($optionIncrement);
        }
    }
开发者ID:annickvdp,项目名称:Chamilo1.9.10,代码行数:31,代码来源:datepicker_old.php

示例3: HTML_QuickForm_html_editor

 /**
  * Class constructor
  * @param   string  HTML editor name/id
  * @param   string  HTML editor  label
  * @param   string  Attributes for the textarea
  * @param array $editor_config	Optional configuration settings for the online editor.
  */
 function HTML_QuickForm_html_editor($elementName = null, $elementLabel = null, $attributes = null, $config = null)
 {
     // The global variable $fck_attribute has been deprecated. It stays here for supporting old external code.
     global $fck_attribute;
     HTML_QuickForm_element::HTML_QuickForm_element($elementName, $elementLabel, $attributes);
     $this->_persistantFreeze = true;
     $this->_type = 'html_editor';
     $this->fullPage = false;
     $name = $this->getAttribute('name');
     $this->fck_editor = new FCKeditor($name);
     $this->fck_editor->ToolbarSet = $fck_attribute['ToolbarSet'];
     $this->fck_editor->Width = !empty($fck_attribute['Width']) ? $fck_attribute['Width'] : '990';
     $this->fck_editor->Height = !empty($fck_attribute['Height']) ? $fck_attribute['Height'] : '400';
     //We get the optionnals config parameters in $fck_attribute array
     $this->fck_editor->Config = !empty($fck_attribute['Config']) ? $fck_attribute['Config'] : array();
     // This is an alternative (a better) way to pass configuration data to the editor.
     if (is_array($config)) {
         foreach ($config as $key => $value) {
             $this->fck_editor->Config[$key] = $config[$key];
         }
         if (isset($config['ToolbarSet'])) {
             $this->fck_editor->ToolbarSet = $config['ToolbarSet'];
         }
         if (isset($config['Width'])) {
             $this->fck_editor->Width = $config['Width'];
         }
         if (isset($config['Height'])) {
             $this->fck_editor->Height = $config['Height'];
         }
         if (isset($config['FullPage'])) {
             $this->fullPage = is_bool($config['FullPage']) ? $config['FullPage'] : $config['FullPage'] === 'true';
         }
     }
 }
开发者ID:annickvdp,项目名称:Chamilo1.9.10,代码行数:41,代码来源:html_editor.php

示例4: HTML_QuickForm_static

 /**
  * Class constructor
  *
  * @param     string    $elementLabel   (optional)Label
  * @param     string    $text           (optional)Display text
  * @access    public
  * @return    void
  */
 function HTML_QuickForm_static($elementName = null, $elementLabel = null, $text = null, $attributes = null)
 {
     HTML_QuickForm_element::HTML_QuickForm_element($elementName, $elementLabel, $attributes);
     $this->_persistantFreeze = false;
     $this->_type = 'static';
     $this->_text = $text;
 } //end constructor
开发者ID:annickvdp,项目名称:Chamilo1.9.10,代码行数:15,代码来源:static.php

示例5:

 /**
  * Constructor
  *
  * @param string name for the element
  * @param string label for the element
  */
 function DB_DataObject_FormBuilder_QuickForm_ElementTable($name = null, $label = null)
 {
     parent::HTML_QuickForm_element($name, $label);
     //$this->setRows($rows);
     //$this->setColumnNames($columnNames);
     //$this->setRowNames($rowNames);
 }
开发者ID:bobah,项目名称:acbdb,代码行数:13,代码来源:ElementTable.php

示例6: foreach

 /**
  * Constructor
  *
  * @param string $elementName (optional) name of the editor
  * @param string $elementLabel (optional) editor label
  * @param array $attributes (optional) Either a typical HTML attribute string
  *              or an associative array
  * @param array $options set of options to initalize filepicker
  */
 function MoodleQuickForm_editor($elementName = null, $elementLabel = null, $attributes = null, $options = null)
 {
     global $CFG, $PAGE;
     $options = (array) $options;
     foreach ($options as $name => $value) {
         if (array_key_exists($name, $this->_options)) {
             $this->_options[$name] = $value;
         }
     }
     if (!empty($options['maxbytes'])) {
         $this->_options['maxbytes'] = get_max_upload_file_size($CFG->maxbytes, $options['maxbytes']);
     }
     if (!$this->_options['context']) {
         // trying to set context to the current page context to make legacy files show in filepicker (e.g. forum post)
         if (!empty($PAGE->context->id)) {
             $this->_options['context'] = $PAGE->context;
         } else {
             $this->_options['context'] = context_system::instance();
         }
     }
     $this->_options['trusted'] = trusttext_trusted($this->_options['context']);
     parent::HTML_QuickForm_element($elementName, $elementLabel, $attributes);
     // Note: for some reason the code using this setting does not like bools.
     $this->_options['subdirs'] = (int) ($this->_options['subdirs'] == 1);
     editors_head_setup();
 }
开发者ID:alanaipe2015,项目名称:moodle,代码行数:35,代码来源:editor.php

示例7: HTML_QuickForm_static

 /**
  * Class constructor
  * 
  * @param     string    $elementLabel   (optional)Label
  * @param     string    $text           (optional)Display text
  * @access    public
  * @return    void
  */
 function HTML_QuickForm_static($elementName = null, $elementLabel = null, $text = null)
 {
     HTML_QuickForm_element::HTML_QuickForm_element($elementName, $elementLabel);
     $this->_persistantFreeze = false;
     $this->_type = 'static';
     $this->_text = $text;
 }
开发者ID:nidzix,项目名称:Newscoop,代码行数:15,代码来源:static.php

示例8: HTML_QuickForm_link

 /**
  * Class constructor
  * 
  * @param     string    $elementLabel   (optional)Link label
  * @param     string    $href           (optional)Link href
  * @param     string    $text           (optional)Link display text
  * @param     mixed     $attributes     (optional)Either a typical HTML attribute string 
  *                                      or an associative array
  * @since     1.0
  * @access    public
  * @return    void
  * @throws    
  */
 function HTML_QuickForm_link($elementName = null, $elementLabel = null, $href = null, $text = null, $attributes = null)
 {
     HTML_QuickForm_element::HTML_QuickForm_element($elementName, $elementLabel, $attributes);
     $this->_persistantFreeze = false;
     $this->_type = 'link';
     $this->setHref($href);
     $this->_text = $text;
 }
开发者ID:laiello,项目名称:coopcrucial,代码行数:21,代码来源:link.php

示例9: HTML_QuickForm_img

 /**
  * Class constructor
  * 
  * @param     string    $elementLabel   (optional)Img label
  * @param     string    $src            (optional)Img src
  * @param     string    $alt            (optional)Img alternative text
  * @param     mixed     $attributes     (optional)Either a typical HTML attribute string 
  *                                      or an associative array
  * @since     1.0
  * @access    public
  * @return    void
  * @throws    
  */
 function HTML_QuickForm_img($elementName = null, $elementLabel = null, $src = null, $alt = null, $attributes = null)
 {
     HTML_QuickForm_element::HTML_QuickForm_element($elementName, $elementLabel, $attributes);
     $this->_persistantFreeze = false;
     $this->_type = 'img';
     $this->setSrc($src);
     $this->setAlt($alt);
 }
开发者ID:BackupTheBerlios,项目名称:tip,代码行数:21,代码来源:img.php

示例10: MoodleQuickForm_selectgroups

 /**
  * Class constructor
  * 
  * @param     string    Select name attribute
  * @param     mixed     Label(s) for the select
  * @param     mixed     Data to be used to populate options
  * @param     mixed     An array whose keys are labels for optgroups and whose values are arrays similar to those passed
  *                          to the select element with keys that are values for options and values are strings for display.  
  * @param     mixed     Either a typical HTML attribute string or an associative array
  * @since     1.0
  * @access    public
  * @return    void
  */
 function MoodleQuickForm_selectgroups($elementName = null, $elementLabel = null, $optgrps = null, $attributes = null)
 {
     HTML_QuickForm_element::HTML_QuickForm_element($elementName, $elementLabel, $attributes);
     $this->_persistantFreeze = true;
     $this->_type = 'selectgroups';
     if (isset($optgrps)) {
         $this->loadArrayOptGroups($optgrps);
     }
 }
开发者ID:BackupTheBerlios,项目名称:samouk-svn,代码行数:22,代码来源:selectgroups.php

示例11: HTML_QuickForm_hiddenselect

 /**
  * Class constructor
  * 
  * @param     string    Select name attribute
  * @param     mixed     Label(s) for the select (not used)
  * @param     mixed     Data to be used to populate options
  * @param     mixed     Either a typical HTML attribute string or an associative array (not used)
  * @since     1.0
  * @access    public
  * @return    void
  */
 function HTML_QuickForm_hiddenselect($elementName = null, $elementLabel = null, $options = null, $attributes = null)
 {
     HTML_QuickForm_element::HTML_QuickForm_element($elementName, $elementLabel, $attributes);
     $this->_persistantFreeze = true;
     $this->_type = 'hiddenselect';
     if (isset($options)) {
         $this->load($options);
     }
 }
开发者ID:peteainsworth,项目名称:civicrm-4.2.9-drupal,代码行数:20,代码来源:hiddenselect.php

示例12: DateTimePicker

 /**
  * Constructor
  */
 public function DateTimePicker($elementName = null, $elementLabel = null, $attributes = null)
 {
     if (!isset($attributes['id'])) {
         $attributes['id'] = $elementName;
     }
     HTML_QuickForm_element::HTML_QuickForm_element($elementName, $elementLabel, $attributes);
     $this->_appendName = true;
     $this->_type = 'date_time_picker';
 }
开发者ID:annickvdp,项目名称:Chamilo1.9.10,代码行数:12,代码来源:DateTimePicker.php

示例13: DateRangePicker

 /**
  * Constructor
  */
 public function DateRangePicker($elementName = null, $elementLabel = null, $attributes = null)
 {
     if (!isset($attributes['id'])) {
         $attributes['id'] = $elementName;
     }
     $attributes['class'] = 'span3';
     HTML_QuickForm_element::HTML_QuickForm_element($elementName, $elementLabel, $attributes);
     $this->_appendName = true;
     $this->_type = 'date_range_picker';
 }
开发者ID:annickvdp,项目名称:Chamilo1.9.10,代码行数:13,代码来源:DateRangePicker.php

示例14: HTML_QuickForm_JoomlaEditor

 /**
  * Class constructor
  *
  * @param   string  Editor instance name
  * @param   string  Editor instance label
  * @param   array   Config settings for editor
  * @param   string  Attributes for the textarea
  * @access  public
  * @return  void
  */
 function HTML_QuickForm_JoomlaEditor($elementName = null, $elementLabel = null, $attributes = null, $options = array())
 {
     HTML_QuickForm_element::HTML_QuickForm_element($elementName, $elementLabel, $attributes);
     $this->_persistantFreeze = true;
     $this->_type = 'JoomlaEditor';
     // set editor height smaller if schema defines rows as 4 or less
     if (is_array($attributes) && array_key_exists('rows', $attributes) && $attributes['rows'] <= 4) {
         $this->height = 200;
     }
 }
开发者ID:hampelm,项目名称:Ginsberg-CiviDemo,代码行数:20,代码来源:joomlaeditor.php

示例15:

 /**
  * Constructor
  *
  * @param string name for the element
  * @param string label for the element
  */
 function HTML_QuickForm_ElementGrid($name = null, $label = null, $options = null)
 {
     parent::HTML_QuickForm_element($name, $label);
     $this->updateAttributes(array('class' => 'elementGrid'));
     //$this->setRows($rows);
     //$this->setColumnNames($columnNames);
     //$this->setRowNames($rowNames);
     if (is_array($options)) {
         $this->_options = array_merge($this->_options, $options);
     }
 }
开发者ID:gabrielrosset,项目名称:moodle-local_vmoodle,代码行数:17,代码来源:elementgrid.php


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