芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/optimyar/wp-content/plugins/wp-statistics/src/Service/CronEventManager.php
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(); } }