GlobalConfigurationsServicesGetGlobalCustomTabs Method
|
Retrieves the list of all global available custom tabs. These tabs will show in "Apps" pane on Ingeniux CMS Client UI.
Namespace:
IngeniuxCMService
Assembly:
IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.5.94
Syntax public XHRServiceResponseGeneric<CustomTabInformation[]> GetGlobalCustomTabs()
Public Function GetGlobalCustomTabs As XHRServiceResponseGeneric(Of CustomTabInformation())
public:
virtual XHRServiceResponseGeneric<array<CustomTabInformation^>^>^ GetGlobalCustomTabs() sealed
abstract GetGlobalCustomTabs : unit -> XHRServiceResponseGeneric<CustomTabInformation[]>
override GetGlobalCustomTabs : unit -> XHRServiceResponseGeneric<CustomTabInformation[]>
Return Value
Type:
XHRServiceResponseGenericCustomTabInformation
The array of Custom tabs information entries
Examples {
"code": 0,
"error": null,
"message": [{
"name": "Analytics",
"id": "CustomTabSettings\/1",
"allowPinning": false,
"appendPageId": true,
"autoSelect": false,
"icon": "http:\/\/[your site]\/images\/icons\/default\/analytic16.png",
"isGlobal": true,
"resourceId": null,
"show": false,
"url": "http:\/\/[your site]\/analytics\/default.aspx"
}]
}
See Also