Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/form/static.php
Go to the documentation of this file.
00001 <?php
00002 require_once("HTML/QuickForm/static.php");
00003 
00010 class MoodleQuickForm_static extends HTML_QuickForm_static{
00011     var $_elementTemplateType='static';
00017     var $_helpbutton='';
00018     function MoodleQuickForm_static($elementName=null, $elementLabel=null, $text=null) {
00019         parent::HTML_QuickForm_static($elementName, $elementLabel, $text);
00020     }
00028     function setHelpButton($helpbuttonargs, $function='helpbutton'){
00029         debugging('component setHelpButton() is not used any more, please use $mform->setHelpButton() instead');
00030     }
00037     function getHelpButton(){
00038         return $this->_helpbutton;
00039     }
00040 
00041     function getElementTemplateType(){
00042         return $this->_elementTemplateType;
00043     }
00044 }
 All Data Structures Namespaces Files Functions Variables Enumerations