library.getInfo: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Added new Category tag)
m (Oops, it's "source" that should be replaced with "syntaxhighlight")
 
Line 10: Line 10:


|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
library.getInfo(namespace)
library.getInfo(namespace)
</source>
</syntaxhighlight>
'''Parameters'''
'''Parameters'''
{{param|namespace|The namespace of the library.}}
{{param|namespace|The namespace of the library.}}
Line 18: Line 18:
|example=
|example=
Retrieves the info for the {{code|.mtlib}} library ''net.rptools.addon.some-lib''.
Retrieves the info for the {{code|.mtlib}} library ''net.rptools.addon.some-lib''.
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
<pre>[r: json.indent(library.getInfo("net.rptools.addon.some-lib"),2)]</pre>
<pre>[r: json.indent(library.getInfo("net.rptools.addon.some-lib"),2)]</pre>
</source>
</syntaxhighlight>
Returns:
Returns:
<source lang="json">
<syntaxhighlight lang="json">
[{
[{
   "name": "some-lib",
   "name": "some-lib",
Line 35: Line 35:
   "allowsUrlAccess": true
   "allowsUrlAccess": true
}]
}]
</source>
</syntaxhighlight>


|also=
|also=

Latest revision as of 04:19, 11 February 2024

library.getInfo() Function

Introduced in version 1.11.0
Retrieves various information about a loaded Add-On library. Information is returned as a JSON object.

Usage

library.getInfo(namespace)

Parameters

  • namespace - The namespace of the library.

Example

Retrieves the info for the .mtlib library net.rptools.addon.some-lib.
<pre>[r: json.indent(library.getInfo("net.rptools.addon.some-lib"),2)]</pre>

Returns:

[{
  "name": "some-lib",
  "namespace": "net.rptools.addon.some-lib",
  "version": "1.0.0",
  "website": "www.rptools.net",
  "gitUrl": "github.com/RPTools/maptool",
  "authors": ["RPTools Team"],
  "license": "GPL 3.0",
  "description": "My new test library for stuff",
  "shortDescription": "test library",
  "allowsUrlAccess": true
}]

See Also

Version Changes

  • 1.11.0 - Function added