You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.2 KiB
69 lines
2.2 KiB
2 years ago
|
<?php
|
||
|
// This file is part of Moodle - http://moodle.org/
|
||
|
//
|
||
|
// Moodle is free software: you can redistribute it and/or modify
|
||
|
// it under the terms of the GNU General Public License as published by
|
||
|
// the Free Software Foundation, either version 3 of the License, or
|
||
|
// (at your option) any later version.
|
||
|
//
|
||
|
// Moodle is distributed in the hope that it will be useful,
|
||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
// GNU General Public License for more details.
|
||
|
//
|
||
|
// You should have received a copy of the GNU General Public License
|
||
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
||
|
/**
|
||
|
* Steps definitions form
|
||
|
*
|
||
|
* @package tool_behat
|
||
|
* @copyright 2012 David Monllaó
|
||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||
|
*/
|
||
|
|
||
|
defined('MOODLE_INTERNAL') || die();
|
||
|
|
||
|
require_once($CFG->libdir.'/formslib.php');
|
||
|
|
||
|
/**
|
||
|
* Form to display the available steps definitions
|
||
|
*
|
||
|
* @package tool_behat
|
||
|
* @copyright 2012 David Monllaó
|
||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||
|
*/
|
||
|
class steps_definitions_form extends moodleform {
|
||
|
|
||
|
/**
|
||
|
* Form definition
|
||
|
* @return void
|
||
|
*/
|
||
|
public function definition() {
|
||
|
|
||
|
$mform = $this->_form;
|
||
|
|
||
|
$mform->addElement('header', 'filters', get_string('stepsdefinitionsfilters', 'tool_behat'));
|
||
|
|
||
|
$types = array(
|
||
|
'' => get_string('allavailablesteps', 'tool_behat'),
|
||
|
'given' => get_string('giveninfo', 'tool_behat'),
|
||
|
'when' => get_string('wheninfo', 'tool_behat'),
|
||
|
'then' => get_string('theninfo', 'tool_behat')
|
||
|
);
|
||
|
$mform->addElement('select', 'type', get_string('stepsdefinitionstype', 'tool_behat'), $types);
|
||
|
|
||
|
$mform->addElement(
|
||
|
'select',
|
||
|
'component',
|
||
|
get_string('stepsdefinitionscomponent', 'tool_behat'),
|
||
|
$this->_customdata['components']
|
||
|
);
|
||
|
|
||
|
$mform->addElement('text', 'filter', get_string('stepsdefinitionscontains', 'tool_behat'));
|
||
|
$mform->setType('filter', PARAM_NOTAGS);
|
||
|
|
||
|
$mform->addElement('submit', 'submit', get_string('viewsteps', 'tool_behat'));
|
||
|
}
|
||
|
}
|