X7ROOT File Manager
Current Path:
/home/cbholdings/pasukulu/lib/classes
home
/
cbholdings
/
pasukulu
/
lib
/
classes
/
📁
..
📁
access
📄
activity_dates.php
(3.02 KB)
📁
analytics
📁
antivirus
📄
chart_axis.php
(4.26 KB)
📄
chart_bar.php
(2.7 KB)
📄
chart_base.php
(8.36 KB)
📄
chart_line.php
(1.87 KB)
📄
chart_pie.php
(1.91 KB)
📄
chart_series.php
(6.53 KB)
📁
check
📄
collator.php
(14.34 KB)
📄
component.php
(52.11 KB)
📁
content
📄
content.php
(7.02 KB)
📁
context
📄
context.php
(36.36 KB)
📄
context_helper.php
(15.5 KB)
📄
cron.php
(26.05 KB)
📄
cssparser.php
(1.38 KB)
📁
dataformat
📄
dataformat.php
(5.72 KB)
📄
date.php
(37.36 KB)
📁
dml
📄
encryption.php
(12.01 KB)
📁
event
📁
external
📁
files
📄
filetypes.php
(41.15 KB)
📁
form
📄
geopattern.php
(1.26 KB)
📄
grades_external.php
(13.69 KB)
📄
grading_external.php
(24.45 KB)
📄
http_client.php
(6.36 KB)
📁
hub
📄
invalid_persistent_exception.php
(1.56 KB)
📄
ip_utils.php
(11.47 KB)
📁
local
📁
lock
📁
log
📁
message
📄
minify.php
(3.65 KB)
📁
moodlenet
📁
navigation
📄
notification.php
(7.48 KB)
📁
oauth2
📁
output
📄
persistent.php
(33.02 KB)
📄
php_time_limit.php
(3.8 KB)
📄
plugin_manager.php
(86.57 KB)
📁
plugininfo
📁
privacy
📁
progress
📄
qrcode.php
(1.39 KB)
📄
report_helper.php
(3.9 KB)
📄
requirejs.php
(4.82 KB)
📄
rtlcss.php
(2 KB)
📄
scss.php
(6.74 KB)
📁
session
📄
shutdown_manager.php
(8.98 KB)
📄
string_manager.php
(5.18 KB)
📄
string_manager_install.php
(9.05 KB)
📄
string_manager_standard.php
(29.6 KB)
📁
task
📄
text.php
(24.55 KB)
📁
update
📁
upgrade
📄
user.php
(50.6 KB)
📄
useragent.php
(44.48 KB)
📄
userfeedback.php
(5.85 KB)
📄
uuid.php
(5.1 KB)
Editing: userfeedback.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/>. /** * This file contains the core_userfeedback class * * @package core * @copyright 2020 Shamim Rezaie <shamim@moodle.com> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); /** * This Class contains helper functions for user feedback functionality. * * @copyright 2020 Shamim Rezaie <shamim@moodle.com> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class core_userfeedback { /** * @var int Ask user to give feedback a few days after each major upgrade. */ public const REMIND_AFTER_UPGRADE = 1; /** * @var int Ask user to give feedback periodically. */ public const REMIND_PERIODICALLY = 2; /** * @var int Do not ask user to give feedback. */ public const REMIND_NEVER = 3; /** * Displays the feedback reminder block. */ public static function print_reminder_block(): void { global $PAGE; static $jscalled = false; $actions = [ [ 'title' => get_string('calltofeedback_give'), 'url' => static::make_link()->out(false), 'data' => [ 'action' => 'give', 'record' => 1, 'hide' => 1, ], 'newwindow' => true, ], [ 'title' => get_string('calltofeedback_remind'), 'url' => '#', 'data' => [ 'action' => 'remind', 'record' => 1, 'hide' => 1, ], ], ]; $icon = [ 'pix' => 'i/bullhorn', 'component' => 'core' ]; \core\notification::add_call_to_action($icon, get_string('calltofeedback'), $actions, 'core/userfeedback'); if (!$jscalled) { $jscalled = true; // Calling the following more than once will register event listeners twice. $PAGE->requires->js_call_amd('core/userfeedback', 'registerEventListeners'); } } /** * Indicates whether the feedback reminder block should be shown or not. * * @return bool */ public static function should_display_reminder(): bool { global $CFG; if (static::can_give_feedback()) { $give = get_user_preferences('core_userfeedback_give'); $remind = get_user_preferences('core_userfeedback_remind'); $lastactiontime = max($give ?: 0, $remind ?: 0); switch ($CFG->userfeedback_nextreminder) { case static::REMIND_AFTER_UPGRADE: $lastupgrade = static::last_major_upgrade_time(); if ($lastupgrade >= $lastactiontime) { return $lastupgrade + ($CFG->userfeedback_remindafter * DAYSECS) < time(); } break; case static::REMIND_PERIODICALLY: return $lastactiontime + ($CFG->userfeedback_remindafter * DAYSECS) < time(); break; } } return false; } /** * Prepare and return the URL of the feedback site * * @return moodle_url */ public static function make_link(): moodle_url { global $CFG, $PAGE; $baseurl = $CFG->userfeedback_url ?? 'https://feedback.moodle.org/lms'; $lang = clean_param(current_language(), PARAM_LANG); // Avoid breaking WS because of incorrect package langs. $moodleurl = $CFG->wwwroot; $moodleversion = $CFG->release; $theme = $PAGE->theme->name; $themeversion = get_config('theme_'.$theme, 'version'); $url = new moodle_url($baseurl, [ 'lang' => $lang, 'moodle_url' => $moodleurl, 'moodle_version' => $moodleversion, 'theme' => $theme, 'theme_version' => $themeversion, 'newtest' => 'Y', // Respondents might be using the same device/browser to fill out the survey. // The newtest param resets the session. ]); return $url; } /** * Whether the current can give feedback. * * @return bool */ public static function can_give_feedback(): bool { global $CFG; return !empty($CFG->enableuserfeedback) && isloggedin() && !isguestuser(); } /** * Returns the last major upgrade time * * @return int */ private static function last_major_upgrade_time(): int { global $DB; $targetversioncast = $DB->sql_cast_char2real('targetversion'); $versioncast = $DB->sql_cast_char2real('version'); // A time difference more than 3 months has to be a core upgrade. // Also, passing IGNORE_MULTIPLE because we are only interested in the first field and LIMIT is not cross-DB. $time = $DB->get_field_sql("SELECT timemodified FROM {upgrade_log} WHERE plugin = 'core' AND $targetversioncast - $versioncast > 30000 ORDER BY timemodified DESC", null, IGNORE_MULTIPLE); return (int)$time; } }
Upload File
Create Folder