__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ 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 customfield_number;

use customfield_number\local\numberproviders\nofactivities;
use customfield_number\task\recalculate;

/**
 * Event observers for customfield_number
 *
 * @package    customfield_number
 * @copyright  Marina Glancy
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 */
class observer {

    /**
     * When a 'number' custom field was created, schedule recalculation for the field data
     *
     * @param \core_customfield\event\field_created $event
     */
    public static function field_created(\core_customfield\event\field_created $event): void {
        $field = $event->get_record_snapshot('customfield_field', $event->objectid);
        if ($field->type === 'number') {
            recalculate::schedule_for_field($event->objectid);
        }
    }

    /**
     * When a 'number' custom field was updated, schedule recalculation for the field data
     *
     * @param \core_customfield\event\field_updated $event
     */
    public static function field_updated(\core_customfield\event\field_updated $event): void {
        $field = $event->get_record_snapshot('customfield_field', $event->objectid);
        if ($field->type === 'number') {
            recalculate::schedule_for_field($event->objectid);
        }
    }

    /**
     * When a course module was created, schedule recalculation for all 'nofactivities' custom fields
     *
     * @param \core\event\course_module_created $event
     */
    public static function course_module_created(\core\event\course_module_created $event): void {
        if (self::has_nofactivities_fields()) {
            recalculate::schedule_for_fieldtype(fieldtype: nofactivities::class,
                component: 'core_course', area: 'course', instanceid: $event->courseid);
        }
    }

    /**
     * When a course module was deleted, schedule recalculation for all 'nofactivities' custom fields
     *
     * @param \core\event\course_module_deleted $event
     */
    public static function course_module_deleted(\core\event\course_module_deleted $event): void {
        if (self::has_nofactivities_fields()) {
            recalculate::schedule_for_fieldtype(fieldtype: nofactivities::class,
                component: 'core_course', area: 'course', instanceid: $event->courseid);
        }
    }

    /**
     * When a course module was updated, schedule recalculation for all 'nofactivities' custom fields
     *
     * Module visibility may change following an 'updated' event and it will affect the activities count
     *
     * @param \core\event\course_module_updated $event
     */
    public static function course_module_updated(\core\event\course_module_updated $event): void {
        if (self::has_nofactivities_fields()) {
            recalculate::schedule_for_fieldtype(fieldtype: nofactivities::class,
                component: 'core_course', area: 'course', instanceid: $event->courseid);
        }
    }

    /**
     * Checks if a 'number' field with 'nofactivities' provider exists in the course fields
     *
     * This method is very fast, it only performs one DB query and only once per request
     *
     * @return bool
     */
    protected static function has_nofactivities_fields(): bool {
        $handler = \core_course\customfield\course_handler::create();
        foreach ($handler->get_categories_with_fields() as $category) {
            foreach ($category->get_fields() as $field) {
                if ($field->get('type') === 'number' &&
                        $field->get_configdata_property('fieldtype') === nofactivities::class) {
                    return true;
                }
            }
        }
        return false;
    }
}

Filemanager

Name Type Size Permission Actions
external Folder 0777
hook Folder 0777
local Folder 0777
privacy Folder 0777
task Folder 0777
data_controller.php File 5.15 KB 0777
field_controller.php File 8.32 KB 0777
missing_provider.php File 1.26 KB 0777
observer.php File 4.28 KB 0777
provider_base.php File 5.11 KB 0777
Filemanager