getImpersonated: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Text replacement - "<source" to "<syntaxhighlight")
 
(9 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{MacroFunction
{{MacroFunction
|name=getImpersonated
|name=getImpersonated
|version=1.3b48
|description=Returns the id of the [[impersonated token]].
|description=Returns the id of the [[impersonated token]].


|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: tokenId = getImpersonated()]
getImpersonated()
</source>
getImpersonated(global)
</syntaxhighlight>
 
'''Parameter'''
{{param|global|If set to {{false}}, returns the id of the token impersonated in the current macro context. If set to {{true}}, returns the token impersonated globally through the UI. Defaults to {{false}} (macro context).}}
 
|changes=
{{change|1.3b51|No longer a trusted function.}}
{{change|1.7.0|Added parameter "global".}}
 
|also=
[[getImpersonatedName|getImpersonatedName()]]
 
}}
}}
[[Category:Token Function]]
[[Category:Token Function]]
[[Category:Impersonation Function]]

Latest revision as of 20:44, 14 March 2023

getImpersonated() Function

Introduced in version 1.3b48
Returns the id of the impersonated token.

Usage

getImpersonated()
getImpersonated(global)

Parameter

  • global - If set to false(0), returns the id of the token impersonated in the current macro context. If set to true(1), returns the token impersonated globally through the UI. Defaults to false(0) (macro context).


See Also

Version Changes

  • 1.3b51 - No longer a trusted function.
  • 1.7.0 - Added parameter "global".