░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/cultivarts/wp-content/plugins/wp-statistics/src/Service/Summary
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: SummaryManager.php
<?php namespace WP_Statistics\Service\Summary; class SummaryManager { public function __construct() { add_action('init', [$this, 'registerEvents']); add_action('update_option_timezone_string', [$this, 'rescheduleEvents'], 10, 2); add_action('update_option_gmt_offset', [$this, 'rescheduleEvents'], 10, 2); } /** * Register the summary events on init hook */ public function registerEvents() { $summaryEvents = new SummaryEvents(); $summaryEvents->register(); } /** * Reschedule summary events when timezone or GMT offset is updated */ public function rescheduleEvents() { $summaryEvents = new SummaryEvents(); $summaryEvents->reschedule(); } }
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 SummaryEvents.php
PHP
2.4 KB
2026-03-24 05:31
EDIT
📄 SummaryManager.php
PHP
766 B
2026-03-24 05:31
EDIT