workflow::action::get_options (public)

 workflow::action::get_options [ -all ] -workflow_id workflow_id \
    [ -parent_action_id parent_action_id ]

Defined in packages/workflow/tcl/action-procs.tcl

Get an options list of actions for use with form builder.

Switches:
-all
(boolean) (optional)
-workflow_id
(required)
-parent_action_id
(optional)

Partial Call Graph (max 5 caller/called nodes):
%3 workflow::action::get workflow::action::get (public) workflow::get_actions workflow::get_actions (public) workflow::action::get_options workflow::action::get_options workflow::action::get_options->workflow::action::get workflow::action::get_options->workflow::get_actions

Testcases:
No testcase defined.
Source code:
    set result [list]
    foreach action_id [workflow::get_actions  -all=$all_p  -workflow_id $workflow_id  -parent_action_id $parent_action_id] {
        workflow::action::get -action_id $action_id -array action
        lappend result [list $action(pretty_name) $action_id]
    }
    return $result
Generic XQL file:
packages/workflow/tcl/action-procs.xql

PostgreSQL XQL file:
packages/workflow/tcl/action-procs-postgresql.xql

Oracle XQL file:
packages/workflow/tcl/action-procs-oracle.xql

[ hide source ] | [ make this the default ]
Show another procedure: