Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/sender/lib/runtime/ |
Upload File : |
<?php /** * Bitrix Framework * @package bitrix * @subpackage sender * @copyright 2001-2018 Bitrix */ namespace Bitrix\Sender\Runtime; /** * Class Job * @package Bitrix\Sender\Runtime */ abstract class Job { /** * Actualize jobs by campaign ID. * @return void */ public static function actualizeByCampaignId($campaignId) { (new SenderJob())->withCampaignId($campaignId)->actualize(); (new ReiteratedJob())->actualize(); } /** * Actualize jobs by letter ID. * @return void */ public static function actualizeByLetterId($letterId) { (new SenderJob())->withLetterId($letterId)->actualize(); (new ReiteratedJob())->actualize(); } /** * Actualize all jobs. * @return void */ public static function actualizeAll() { (new SenderJob())->actualize(); (new ReiteratedJob())->actualize(); } protected function addAgent($agentName, $interval = 60, $nextDateExec = '') { if (!$agentName || !is_string($agentName)) { return; } $agent = new \CAgent(); $agent->AddAgent( $agentName, "sender", "N", (int) $interval, null, "Y", (string) $nextDateExec ); } protected function removeAgent($agentName) { if (!$agentName || !is_string($agentName)) { return; } $agent = new \CAgent(); $list = $agent->getList( ["ID" => "DESC"], ["MODULE_ID" => "sender", "=NAME" => $agentName] ); while ($row = $list->fetch()) { $agent->delete($row["ID"]); } } protected function agentExists($agentName) { if (!$agentName || !is_string($agentName)) { return false; } $agent = new \CAgent(); return (bool)$agent->getList( ["ID" => "DESC"], ["MODULE_ID" => "sender", "NAME" => $agentName] )->fetch(); } }