Toggle menu
862
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

NavigationAccessHelper class: Difference between revisions

From Catglobe Wiki
Nguyenduyan (talk | contribs)
No edit summary
No edit summary
 
Line 1: Line 1:
{{CGscriptClass_Template
{{CGscriptClass_Template
|Name=NavigationAccessHelper
|Name=<nowiki>NavigationAccessHelper</nowiki>
|Description=Class to manipulate navigation access
|Description=<nowiki>Helper class to fetch navigation access</nowiki>
|Constructors=
|InheritsFrom=object|Constructors=
{{CGscriptConstructors_Template|Description=Instanciate new helper}}
{{CGscriptConstructors_Template|Description=<nowiki>Instanciate new helper</nowiki>}}
|Methods=
|Methods=
{{CGscriptMethods_Template|ReturnType=Array of strings|Name=AllAvailableNavigationAccess|Description=Get names of all navigation access in the system}}
{{CGscriptMethods_Template|ReturnType=Array of strings|Name=<nowiki>AllAvailableNavigationAccess</nowiki>|Description=<nowiki>Get names of all navigation access in the system</nowiki>}}
{{CGscriptMethods_Template|ReturnType=Array of strings|Name=AllNavigationAccessWithAccess|Description=Get names of all navigation access the current user has access to in the system}}
{{CGscriptMethods_Template|ReturnType=Array of strings|Name=<nowiki>AllNavigationAccessWithAccess</nowiki>|Description=<nowiki>Get names of all navigation access the current user has access to in the system</nowiki>}}
{{CGscriptMethods_Template|ReturnType=bool|Name=HasNavigationAccess|Parameters=
{{CGscriptMethods_Template|ReturnType=bool|Name=<nowiki>HasNavigationAccess</nowiki>|Parameters=
{{CGscriptParameters_Template|Type=string|Name=navigationAccessName|Description=Name of the nav access to check}}
{{CGscriptParameters_Template|Type=string|Name=<nowiki>navigationAccessName</nowiki>|Description=<nowiki>Name of the nav access to check</nowiki>}}
|Description=Check if the current user has access to a specific navigation access}}
|Description=<nowiki>Check if the current user has access to a specific navigation access</nowiki>}}
{{CGscriptMethods_Template|ReturnType=string|Name=ToString|Description=The string representation of the object.}}
{{CGscriptMethods_Template|ReturnType=string|Name=<nowiki>ToString</nowiki>|Inherited=object|Description=<nowiki>The string representation of the object.</nowiki>}}
|Properties=
|Properties=
{{CGscriptProperties_Template|ReturnType=string|Name=ObjectTypeName|HasGetter=1|Description=The name of the type of object.}}
{{CGscriptProperties_Template|ReturnType=string|Name=<nowiki>ObjectTypeName</nowiki>|HasGetter=1|Description=<nowiki>The name of the type of object.</nowiki>}}
{{CGscriptProperties_Template|ReturnType=TypeInformation|Name=TypeInformation|HasGetter=1|Description=Get information about this class.}}
{{CGscriptProperties_Template|ReturnType=TypeInformation|Name=<nowiki>TypeInformation</nowiki>|HasGetter=1|Inherited=object|Description=<nowiki>Get information about this class.</nowiki>}}
}}
}}



Latest revision as of 05:03, 2 July 2020

NavigationAccessHelper



Helper class to fetch navigation access

Parent class

Inherits from object

Constructors

  • () - Instanciate new helper

Methods

  • Array of string AllAvailableNavigationAccess() - Get names of all navigation access in the system
  • Array of string AllNavigationAccessWithAccess() - Get names of all navigation access the current user has access to in the system
  • bool HasNavigationAccess(string navigationAccessName "Name of the nav access to check") - Check if the current user has access to a specific navigation access
  • (From object) string ToString() - The string representation of the object.

Properties

  • string ObjectTypeName { get; } - The name of the type of object.
  • (From object) TypeInformation TypeInformation { get; } - Get information about this class.


Examples

NavigationAccessHelper nav = new NavigationAccessHelper();
print(nav.AllAvailableNavigationAccess());
print(nav.AllNavigationAccessWithAccess());
print(nav.HasNavigationAccess("Questionnaire_Search"));