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 link type form element
21 * Contains HTML class for a submitting to link
24 * @copyright 2006 Jamie Pratt <me@jamiep.org>
25 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
29 require_once("$CFG->libdir/form/submit.php");
31 * submit link type form element
33 * HTML class for a submitting to link
37 * @copyright 2006 Jamie Pratt <me@jamiep.org>
38 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
40 class MoodleQuickForm_submitlink
extends MoodleQuickForm_submit
{
41 /** @var string javascript for submitting element's data */
44 /** @var string callback function which will be called onclick event */
50 * @param string $elementName (optional) name of the field
51 * @param string $value (optional) field label
52 * @param string $attributes (optional) Either a typical HTML attribute string or an associative array
54 public function __construct($elementName=null, $value=null, $attributes=null) {
55 parent
::__construct($elementName, $value, $attributes);
59 * Old syntax of class constructor for backward compatibility.
61 public function MoodleQuickForm_submitlink($elementName=null, $value=null, $attributes=null) {
62 self
::__construct($elementName, $value, $attributes);
66 * Returns HTML for submitlink form element.
71 $text = $this->_attributes
['value'];
73 return "<noscript><div>" . parent
::toHtml() . '</div></noscript><script type="text/javascript">' . $this->_js
. "\n"
74 . 'document.write(\'<a href="#" onclick="' . $this->_onclick
. '">'
75 . $text . "</a>');\n</script>";