You are here

function hook_nodequeue_arrange_subqueue_form_alter in Nodequeue 7.2

Allow modifying the table setup before output.

For example, it's possible to add some columns in the table with the help of this hook.

Parameters

array $form: The form to access submitted values.

array $header: The table headers before sending it to theming layer.

array $rows: The table rows before sending it to theming layer.

See also

theme_nodequeue_arrange_subqueue_form_table().

1 invocation of hook_nodequeue_arrange_subqueue_form_alter()
theme_nodequeue_arrange_subqueue_form_table in ./nodequeue.theme.inc
Theme the subqueue overview as a sortable list.

File

./nodequeue.api.php, line 287

Code

function hook_nodequeue_arrange_subqueue_form_alter($form, $header, $rows) {
}