芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/public_html/cepali/admin/tool/usertours/classes/local/forms/edittour.php
. /** * Form for editing tours. * * @package tool_usertours * @copyright 2016 Andrew Nicols
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace tool_usertours\local\forms; defined('MOODLE_INTERNAL') || die('Direct access to this script is forbidden.'); require_once($CFG->libdir . '/formslib.php'); use \tool_usertours\helper; /** * Form for editing tours. * * @copyright 2016 Andrew Nicols
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class edittour extends \moodleform { /** * @var tool_usertours\tour $tour */ protected $tour; /** * Create the edit tour form. * * @param tour $tour The tour being editted. */ public function __construct(\tool_usertours\tour $tour) { $this->tour = $tour; parent::__construct($tour->get_edit_link()); } /** * Form definition. */ public function definition() { $mform = $this->_form; // ID of existing tour. $mform->addElement('hidden', 'id'); $mform->setType('id', PARAM_INT); // Name of the tour. $mform->addElement('text', 'name', get_string('name', 'tool_usertours')); $mform->addRule('name', get_string('required'), 'required', null, 'client'); $mform->setType('name', PARAM_TEXT); // Admin-only descriptions. $mform->addElement('textarea', 'description', get_string('description', 'tool_usertours')); $mform->setType('description', PARAM_RAW); // Application. $mform->addElement('text', 'pathmatch', get_string('pathmatch', 'tool_usertours')); $mform->setType('pathmatch', PARAM_RAW); $mform->addHelpButton('pathmatch', 'pathmatch', 'tool_usertours'); $mform->addElement('checkbox', 'enabled', get_string('tourisenabled', 'tool_usertours')); // Configuration. $this->tour->add_config_to_form($mform); // Filters. $mform->addElement('header', 'filters', get_string('filter_header', 'tool_usertours')); $mform->addElement('static', 'filterhelp', '', get_string('filter_help', 'tool_usertours')); foreach (helper::get_all_filters() as $filterclass) { $filterclass::add_filter_to_form($mform); } $this->add_action_buttons(); } }