Skip to content
This repository has been archived by the owner on Jun 9, 2023. It is now read-only.

Latest commit

 

History

History
58 lines (48 loc) · 4.31 KB

plugins.core.commands.actions.md

File metadata and controls

58 lines (48 loc) · 4.31 KB

docs » plugins.core.commands.actions


An action which will execute a command with matching group/id values. Registers itself with the core.action.manager.

API Overview

API Documentation

Functions

Signature plugins.core.commands.actions.execute(action) -> boolean
Type Function
Description Executes the action with the provided parameters.
Parameters
  • action - A table representing the action, matching the following:
    • id - The specific Command ID within the group.
Returns
  • true if the action was executed successfully.
Signature plugins.core.commands.actions.getId(action) -> string
Type Function
Description Gets an ID from an action table
Parameters
  • action - The action table.
Returns
  • The ID as a string.
Signature plugins.core.commands.actions.init(actionmanager, cmds) -> none
Type Function
Description Initialises the module.
Parameters
  • actionmanager - The Action Manager Plugin
  • cmds - The Commands Plugin.
Returns
  • None
Signature plugins.core.commands.actions.onChoices(choices) -> none
Type Function
Description Adds available choices to the selection.
Parameters
  • choices - The cp.choices to add choices to.
Returns
  • None
Signature plugins.core.commands.actions.reset() -> nothing
Type Function
Description Resets the set of choices.
Parameters
  • None
Returns
  • Nothing