Moodle APIs  3.8
Moodle 3.8.6 (Build: 20201109)
Public Member Functions | Public Attributes | Protected Attributes | List of all members
MoodleQuickForm_duration Class Reference
Inheritance diagram for MoodleQuickForm_duration:
MoodleQuickForm_group templatable

Public Member Functions

 __construct ($elementName=null, $elementLabel=null, $options=array(), $attributes=null)
 constructor More...
 
 _createElements ()
 Override of standard quickforms method to create this element.
 
 accept (&$renderer, $required=false, $error=null)
 Accepts a renderer. More...
 
 createFormElement ()
 Creates an element to add to the group Expects the same arguments as MoodleQuickForm::createElement()
 
 export_for_template (renderer_base $output)
 Function to export the renderer data in a format that is suitable for a mustache template. More...
 
 exportValue (&$submitValues, $assoc=false)
 Output a timestamp. More...
 
 get_units ()
 Returns time associative array of unit length. More...
 
 getElementTemplateType ()
 Returns element template, nodisplay/static/fieldset. More...
 
string getHelpButton ()
 template type, would cause problems with client side validation so will leave for now More...
 
 MoodleQuickForm_duration ($elementName=null, $elementLabel=null, $options=array(), $attributes=null)
 Old syntax of class constructor. More...
 
 MoodleQuickForm_group ($elementName=null, $elementLabel=null, $elements=null, $separator=null, $appendName=true)
 Old syntax of class constructor. More...
 
 onQuickFormEvent ($event, $arg, &$caller)
 Called by HTML_QuickForm whenever form event is made on this element. More...
 
 seconds_to_unit ($seconds)
 Converts seconds to the best possible time unit. More...
 
 setElements ($elements)
 Sets the grouped elements and hides label. More...
 
 setMoodleForm ($mform)
 Stores the form this element was added to This object is later used by MoodleQuickForm_group::createElement(). More...
 
 toHtml ()
 Returns HTML for advchecbox form element. More...
 
 validateSubmitValue ($values)
 Calls the validateSubmitValue function for the containing elements and returns an error string as soon as it finds one. More...
 

Public Attributes

string $_helpbutton =''
 html for help button, if empty then no help
 

Protected Attributes

MoodleQuickForm $_mform = null
 
array $_options = array('optional' => false, 'defaultunit' => 60)
 Control the fieldnames for form elements optional => if true, show a checkbox beside the element to turn it on (or off)
 
 $_renderedfromtemplate = false
 

Constructor & Destructor Documentation

◆ __construct()

MoodleQuickForm_duration::__construct (   $elementName = null,
  $elementLabel = null,
  $options = array(),
  $attributes = null 
)

constructor

Parameters
string$elementNameElement's name
mixed$elementLabelLabel(s) for an element
array$optionsOptions to control the element's display. Recognised values are 'optional' => true/false - whether to display an 'enabled' checkbox next to the element. 'defaultunit' => 1|60|3600|86400|604800 - the default unit to display when the time is blank. If not specified, minutes is used.
mixed$attributesEither a typical HTML attribute string or an associative array

Member Function Documentation

◆ accept()

MoodleQuickForm_duration::accept ( $renderer,
  $required = false,
  $error = null 
)

Accepts a renderer.

Parameters
HTML_QuickForm_Renderer$rendererAn HTML_QuickForm_Renderer object
bool$requiredWhether a group is required
string$errorAn error message associated with a group

Reimplemented from MoodleQuickForm_group.

◆ export_for_template()

MoodleQuickForm_group::export_for_template ( renderer_base  $output)
inherited

Function to export the renderer data in a format that is suitable for a mustache template.

This means:

  1. No complex types - only stdClass, array, int, string, float, bool
  2. Any additional info that is required for the template is pre-calculated (e.g. capability checks).
Parameters
renderer_base$outputUsed to do a final render of any components that need to be rendered for export.
Return values
stdClass|array

Implements templatable.

Reimplemented in MoodleQuickForm_date_time_selector, and MoodleQuickForm_date_selector.

◆ exportValue()

MoodleQuickForm_duration::exportValue ( $submitValues,
  $assoc = false 
)

Output a timestamp.

Give it the name of the group. Override of standard quickforms method.

Parameters
array$submitValues
bool$assocwhether to return the value as associative array
Return values
arrayfield name => value. The value is the time interval in seconds.

◆ get_units()

MoodleQuickForm_duration::get_units ( )

Returns time associative array of unit length.

Return values
arrayunit length in seconds => string unit name.

◆ getElementTemplateType()

MoodleQuickForm_group::getElementTemplateType ( )
inherited

Returns element template, nodisplay/static/fieldset.

Return values
string

◆ getHelpButton()

string MoodleQuickForm_group::getHelpButton ( )
inherited

template type, would cause problems with client side validation so will leave for now

set html for help button

◆ MoodleQuickForm_duration()

MoodleQuickForm_duration::MoodleQuickForm_duration (   $elementName = null,
  $elementLabel = null,
  $options = array(),
  $attributes = null 
)

Old syntax of class constructor.

Deprecated in PHP7.

Deprecated:
since Moodle 3.1

◆ MoodleQuickForm_group()

MoodleQuickForm_group::MoodleQuickForm_group (   $elementName = null,
  $elementLabel = null,
  $elements = null,
  $separator = null,
  $appendName = true 
)
inherited

Old syntax of class constructor.

Deprecated in PHP7.

Deprecated:
since Moodle 3.1

◆ onQuickFormEvent()

MoodleQuickForm_duration::onQuickFormEvent (   $event,
  $arg,
$caller 
)

Called by HTML_QuickForm whenever form event is made on this element.

Parameters
string$eventName of event
mixed$argevent arguments
object$callercalling object
Return values
bool

Reimplemented from MoodleQuickForm_group.

◆ seconds_to_unit()

MoodleQuickForm_duration::seconds_to_unit (   $seconds)

Converts seconds to the best possible time unit.

for example 1800 -> array(30, 60) = 30 minutes.

Parameters
int$secondsan amout of time in seconds.
Return values
arrayassociative array ($number => $unit)

◆ setElements()

MoodleQuickForm_group::setElements (   $elements)
inherited

Sets the grouped elements and hides label.

Parameters
array$elements

◆ setMoodleForm()

MoodleQuickForm_group::setMoodleForm (   $mform)
inherited

Stores the form this element was added to This object is later used by MoodleQuickForm_group::createElement().

Parameters
null | MoodleQuickForm$mform

◆ toHtml()

MoodleQuickForm_duration::toHtml ( )

Returns HTML for advchecbox form element.

Return values
string

◆ validateSubmitValue()

MoodleQuickForm_group::validateSubmitValue (   $values)
inherited

Calls the validateSubmitValue function for the containing elements and returns an error string as soon as it finds one.

Parameters
array$valuesValues of the containing elements.
Return values
string|nullValidation error message or null.

Reimplemented in MoodleQuickForm_filetypes.


The documentation for this class was generated from the following file: