WoW:API GetAddOnInfo: Difference between revisions
Jump to navigation
Jump to search
GetAddOnInfo - Documentation by Flickering
m (New document.) |
(Removed Categories) |
||
Line 23: | Line 23: | ||
__NOTOC__ | __NOTOC__ | ||
{{Template:WoW API}} | {{Template:WoW API}} | ||
Revision as of 04:28, 4 January 2006
Get information about an AddOn.
name, title, notes, enabled, loadable, reason, security = GetAddOnInfo(index or "name")
Parameters
Arguments
- (index or "name")
- index
- Integer - The index of the AddOn in the user's AddOn list. Note that you cannot access Blizzard-provided AddOns through this mechanism.
- name
- String - The name of the AddOn to be queries. You can access Blizzard-provided AddOns through this mechanism.
Returns
- name, title, notes, enabled, loadable, reason, security
- name
- String - The name of the AddOn.
- title
- String - The title of the AddOn from its .toc file (presumably this is the appropriate localized one).
- notes
- String - The notes about the AddOn from its .toc file (presumably this is the appropriate localized one).
- enabled
- Flag - Indicates if the AddOn is currently enabled, 1 if it is, nil if it is not.
- loadable
- Flag - Indicates if the AddOn is eligible to be loaded, 1 if it is, nil if it is not.
- reason
- String - The reason why the AddOn cannot be loaded. This is nil if the addon is loadable, otherwise it contains a code indicating the reason. (Observed reason codes: "DISABLED")
- security
- String - A string indicating the security status of the AddOn. This is presently "INSECURE" for all user provided AddOns. The 1.8 patch will introduce Blizzard provided AddOns which may have a different value.