-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinclude.php
23 lines (20 loc) · 960 Bytes
/
include.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/*
* This file is part of the Studio Fact package.
*
* (c) Kulichkin Denis (onEXHovia) <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use Bitrix\Main\Loader;
Loader::includeModule('catalog');
Loader::registerAutoLoadClasses('citfact.filter.subscribe', array(
'Citfact\FilterSubscribe\Model\SubscribeTable' => 'lib/Model/SubscribeTable.php',
'Citfact\FilterSubscribe\Model\SubscribeNotifyTable' => 'lib/Model/SubscribeNotifyTable.php',
'Citfact\FilterSubscribe\Model\SubscribeStackTable' => 'lib/Model/SubscribeStackTable.php',
'Citfact\FilterSubscribe\Model\SubscribeUserTable' => 'lib/Model/SubscribeUserTable.php',
'Citfact\FilterSubscribe\Agent' => 'lib/Agent.php',
'Citfact\FilterSubscribe\FilterLexer' => 'lib/FilterLexer.php',
'Citfact\FilterSubscribe\SubscribeManager' => 'lib/SubscribeManager.php',
));