__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace WP_Statistics\Service;
use WP_Statistics\Components\Event;
use WP_STATISTICS\Option;
use WP_Statistics\Service\Admin\MarketingCampaign\MarketingCampaignFetcher;
use WP_Statistics\Service\Admin\Notification\NotificationFetcher;
class CronEventManager
{
/**
* CronEventManager constructor.
*/
public function __construct()
{
Event::schedule('wp_statistics_daily_cron_hook', time(), 'daily', [$this, 'handleDailyTasks']);
}
/**
* Handle daily tasks triggered by the scheduled cron event.
*
* Calls both notification and marketing campaign fetchers.
*/
public function handleDailyTasks()
{
if (Option::get('display_notifications')) {
$this->fetchNotification();
$this->fetchMarketingCampaign();
}
}
/**
* Fetches new notifications.
*
* This method is triggered by the scheduled cron event
* and retrieves new notifications.
*/
private function fetchNotification()
{
$notificationFetcher = new NotificationFetcher();
$notificationFetcher->fetchNotification();
}
/**
* Fetches marketing campaign.
*
* This method is triggered by the scheduled cron event
* and retrieve marketing campaign.
*/
private function fetchMarketingCampaign()
{
$marketingCampaignFetcher = new MarketingCampaignFetcher();
$marketingCampaignFetcher->fetchMarketingCampaign();
}
}| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Admin | Folder | 0755 |
|
|
| Analytics | Folder | 0755 |
|
|
| Charts | Folder | 0755 |
|
|
| CustomEvent | Folder | 0755 |
|
|
| Database | Folder | 0755 |
|
|
| Debugger | Folder | 0755 |
|
|
| Geolocation | Folder | 0755 |
|
|
| Integrations | Folder | 0755 |
|
|
| Logger | Folder | 0755 |
|
|
| Summary | Folder | 0755 |
|
|
| ThirdParty | Folder | 0755 |
|
|
| CronEventManager.php | File | 1.46 KB | 0644 |
|
| HooksManager.php | File | 3.55 KB | 0644 |
|