uawdijnntqw1x1x1
IP : 3.144.85.96
Hostname : axolotl
Kernel : Linux axolotl 4.9.0-13-amd64 #1 SMP Debian 4.9.228-1 (2020-07-05) x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
OS : Linux
PATH:
/
var
/
www
/
axolotl
/
data
/
www
/
nn.axolotls.ru
/
bitrix
/
components
/
bitrix
/
sender.campaign.selector
/
ajax.php
/
/
<?php use Bitrix\Main\Entity\ExpressionField; use Bitrix\Main\HttpRequest; use Bitrix\Main\Localization\Loc; use Bitrix\Sender\Entity; use Bitrix\Sender\Internals\CommonAjax; use Bitrix\Sender\Internals\QueryController as Controller; use Bitrix\Sender\UI; define('STOP_STATISTICS', true); define('BX_SECURITY_SHOW_MESSAGE', true); require_once($_SERVER['DOCUMENT_ROOT'].'/bitrix/modules/main/include/prolog_before.php'); if (!Bitrix\Main\Loader::includeModule('sender')) { return; } Loc::loadMessages(__FILE__); $actions = array(); $actions[] = Controller\Action::create('getCampaigns')->setHandler( function (HttpRequest $request, Controller\Response $response) { $view = UI\TileView::create() ->addSection(UI\TileView::SECTION_LAST) ->addSection(UI\TileView::SECTION_FREQ) ->addSection(UI\TileView::SECTION_ALL); $sites = Entity\Campaign::getSites(); $list = Entity\Campaign::getList([ 'select' => ['ID', 'NAME', 'MAX_DATE_INSERT', 'COUNT_LETTERS', 'SUBSCRIBER_COUNT', 'SITE_ID'], 'runtime' => [ new ExpressionField('MAX_DATE_INSERT', 'MAX(%s)', 'CHAIN.DATE_INSERT'), new ExpressionField('COUNT_LETTERS', 'COUNT(%s)', 'CHAIN.ID'), ] ]); foreach ($list as $item) { $view->addTile( $item['ID'], $item['NAME'], [ UI\TileView::SECTION_FREQ => $item['COUNT_LETTERS'], UI\TileView::SECTION_LAST => $item['MAX_DATE_INSERT'], 'subscriberCount' => $item['SUBSCRIBER_COUNT'], 'siteId' => $item['SITE_ID'], 'siteName' => $sites[$item['SITE_ID']], ] ); } // get response $response->initContentJson()->set(array( 'list' => $view->get(), )); } ); $checker = CommonAjax\Checker::getViewLetterPermissionChecker(); Controller\Listener::create()->addChecker($checker)->setActions($actions)->run();
/var/www/axolotl/data/www/nn.axolotls.ru/bitrix/components/bitrix/sender.campaign.selector/ajax.php