芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/.trash/cepali/admin/tool/installaddon/tests/fixtures/testable_installer.php
. /** * Provides {@link testable_tool_installaddon_installer} class. * * @package tool_installaddon * @subpackage fixtures * @category test * @copyright 2013, 2015 David Mudrak
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); /** * Testable subclass of the tested class * * @copyright 2013 David Mudrak
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class testable_tool_installaddon_installer extends tool_installaddon_installer { public function get_site_fullname() { return strip_tags('
Nasty site
'); } public function get_site_url() { return 'file:///etc/passwd'; } public function get_site_major_version() { return "2.5'; DROP TABLE mdl_user; --"; } public function testable_decode_remote_request($request) { return parent::decode_remote_request($request); } protected function should_send_site_info() { return true; } public function testable_detect_plugin_component_from_versionphp($code) { return parent::detect_plugin_component_from_versionphp($code); } }