2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
19 * submit type form element
21 * Contains HTML class for a submit type element
24 * @copyright 2006 Jamie Pratt <me@jamiep.org>
25 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
28 require_once("HTML/QuickForm/submit.php");
29 require_once('templatable_form_element.php');
32 * submit type form element
34 * HTML class for a submit type element
38 * @copyright 2006 Jamie Pratt <me@jamiep.org>
39 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
41 class MoodleQuickForm_submit
extends HTML_QuickForm_submit
implements templatable
{
42 use templatable_form_element
{
43 export_for_template
as export_for_template_base
;
47 * @var bool $primary Is this button a primary button?
52 * Any class apart from 'btn' would be overridden with this content.
54 * By default, submit buttons will utilize the btn-primary OR btn-secondary classes. However there are cases where we
55 * require a submit button with different stylings (e.g. btn-link). In these cases, $customclassoverride will override
56 * the defaults mentioned previously and utilize the provided class(es).
58 * @var string $customclassoverride Custom class override for the input element
60 protected $customclassoverride;
65 * @param string $elementName (optional) name of the field
66 * @param string $value (optional) field label
67 * @param string $attributes (optional) Either a typical HTML attribute string or an associative array
68 * @param bool|null $primary Is this button a primary button?
69 * @param array $options Options to further customise the submit button. Currently accepted options are:
70 * customclassoverride String The CSS class to use for the button instead of the standard
71 * btn-primary and btn-secondary classes.
73 public function __construct($elementName=null, $value=null, $attributes=null, $primary = null, $options = []) {
74 parent
::__construct($elementName, $value, $attributes);
76 // Fallback to legacy behaviour if no value specified.
77 if (is_null($primary)) {
78 $this->primary
= $this->getName() != 'cancel';
80 $this->primary
= $primary;
83 $this->customclassoverride
= $options['customclassoverride'] ??
false;
87 * Old syntax of class constructor. Deprecated in PHP7.
89 * @deprecated since Moodle 3.1
91 public function MoodleQuickForm_submit($elementName=null, $value=null, $attributes=null, $primary = null) {
92 debugging('Use of class name as constructor is deprecated', DEBUG_DEVELOPER
);
93 self
::__construct($elementName, $value, $attributes, $primary);
97 * Called by HTML_QuickForm whenever form event is made on this element
99 * @param string $event Name of event
100 * @param mixed $arg event arguments
101 * @param object $caller calling object
103 function onQuickFormEvent($event, $arg, &$caller)
106 case 'createElement':
107 parent
::onQuickFormEvent($event, $arg, $caller);
108 if ($caller->isNoSubmitButton($arg[0])){
109 //need this to bypass client validation
110 //for buttons that submit but do not process the
112 $onClick = $this->getAttribute('onclick');
113 $skip = 'skipClientValidation = true;';
114 $onClick = ($onClick !== null)?
$skip.' '.$onClick:$skip;
115 $this->updateAttributes(array('data-skip-validation' => 1, 'data-no-submit' => 1, 'onclick' => $onClick));
120 return parent
::onQuickFormEvent($event, $arg, $caller);
125 * Slightly different container template when frozen. Don't want to display a submit
126 * button if the form is frozen.
130 function getElementTemplateType(){
131 if ($this->_flagFrozen
){
134 return 'actionbuttons';
139 * Freeze the element so that only its value is returned
142 $this->_flagFrozen
= true;
145 public function export_for_template(renderer_base
$output) {
146 $context = $this->export_for_template_base($output);
147 if (!$this->primary
) {
148 $context['secondary'] = true;
151 if ($this->customclassoverride
) {
152 $context['customclassoverride'] = $this->customclassoverride
;