API GetCustomMenuCategory: Porovnání verzí
Z Podpora.nextis.cz
(Založena nová stránka s textem „Description“) |
|||
Řádka 1: | Řádka 1: | ||
− | Description | + | ====Description==== |
+ | Method gives You overview of existing custom menu category in system | ||
+ | ====Exact name==== | ||
+ | <code>API_GetCustomMenuCategory</code> | ||
+ | ====Type==== | ||
+ | Standard view. | ||
+ | ====Specification==== | ||
+ | {| class="wikitable" | ||
+ | !Column | ||
+ | !Data type | ||
+ | !Description | ||
+ | !Relation | ||
+ | |- | ||
+ | |ID | ||
+ | |int | ||
+ | |Internal system id | ||
+ | | | ||
+ | |- | ||
+ | |ParentID | ||
+ | |int | ||
+ | | | ||
+ | | | ||
+ | |- | ||
+ | |PageID | ||
+ | |int | ||
+ | |ID of article from articles list (see relation) | ||
+ | |API_GetArticles.ID | ||
+ | |- | ||
+ | |Title | ||
+ | |nvarchar(250) | ||
+ | |Branch name | ||
+ | | | ||
+ | |- | ||
+ | |Tooltip | ||
+ | |nvarchar(250) | ||
+ | |Tooltip | ||
+ | | | ||
+ | |- | ||
+ | |Language | ||
+ | |int | ||
+ | |cs=0; pl=1; en=2; de=3; sk=4; hu=5; nl=6; ru=7; et=8; lv=9; lt=10; ar=11; fr=12; it=13; pt=14; ro=15; es=16; tr=17; bg=18 | ||
+ | | | ||
+ | |- | ||
+ | |URL | ||
+ | |nvarchar(350) | ||
+ | |URL | ||
+ | | | ||
+ | |- | ||
+ | |OrderIndex | ||
+ | |int | ||
+ | |Order index | ||
+ | | | ||
+ | |- | ||
+ | |BranchID | ||
+ | |int | ||
+ | |ID of branch from branch list (see relation). -1 = all | ||
+ | |API_GetBranches.ID | ||
+ | |} | ||
+ | ====Example==== | ||
+ | <syntaxhighlight lang="sql"> | ||
+ | SELECT TOP 1000 * FROM [API_GetCustomMenuCategory] | ||
+ | </syntaxhighlight> | ||
+ | ====Notices==== | ||
+ | <span> </span>None. |
Verze z 25. 7. 2017, 14:46
Description
Method gives You overview of existing custom menu category in system
Exact name
API_GetCustomMenuCategory
Type
Standard view.
Specification
Column | Data type | Description | Relation |
---|---|---|---|
ID | int | Internal system id | |
ParentID | int | ||
PageID | int | ID of article from articles list (see relation) | API_GetArticles.ID |
Title | nvarchar(250) | Branch name | |
Tooltip | nvarchar(250) | Tooltip | |
Language | int | cs=0; pl=1; en=2; de=3; sk=4; hu=5; nl=6; ru=7; et=8; lv=9; lt=10; ar=11; fr=12; it=13; pt=14; ro=15; es=16; tr=17; bg=18 | |
URL | nvarchar(350) | URL | |
OrderIndex | int | Order index | |
BranchID | int | ID of branch from branch list (see relation). -1 = all | API_GetBranches.ID |
Example
SELECT TOP 1000 * FROM [API_GetCustomMenuCategory]
Notices
None.