-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.phpstorm.meta.php
47 lines (39 loc) · 1.19 KB
/
.phpstorm.meta.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
/**
* hipot studio source file
* User: <hipot AT ya DOT ru>
* Date: 23.10.2019 2:34
* @version pre 1.0
*/
// see https://confluence.jetbrains.com/display/PhpStorm/PhpStorm+Advanced+Metadata
namespace PHPSTORM_META
{
registerArgumentsSet('module_include_const',
\Bitrix\Main\Loader::MODULE_DEMO | \Bitrix\Main\Loader::MODULE_DEMO_EXPIRED | \Bitrix\Main\Loader::MODULE_INSTALLED | \Bitrix\Main\Loader::MODULE_NOT_FOUND
);
expectedReturnValues(
\Bitrix\Main\Loader::includeSharewareModule(),
argumentsSet('module_include_const')
);
registerArgumentsSet('bitrix_components',
'hipot:ajax', 'hipot:includer', 'hipot:iblock.list', 'hipot:iblock.section', 'hipot:iblock.menu_ext', 'hipot:iblock.menu_ext'
);
expectedArguments(
\CMain::IncludeComponent(),
0,
argumentsSet('bitrix_components')
);
registerArgumentsSet('bitrix_page_properties',
'title', 'description', 'h1', 'robots', 'canonical', 'keywords', 'og:title', 'og:description', 'og:type', 'og:url', 'og:image', 'og:image:alt'
);
expectedArguments(
\CMain::SetPageProperty(),
0,
argumentsSet('bitrix_page_properties')
);
expectedArguments(
\CMain::GetPageProperty(),
0,
argumentsSet('bitrix_page_properties')
);
}