You are here

function vefl_form_actions in Views exposed form layout 7

Returns action fields for views exposed form.

5 calls to vefl_form_actions()
vefl_plugin_exposed_form_basic::exposed_form_alter in views/vefl_plugin_exposed_form_basic.inc
Views exposed form alter function.
vefl_plugin_exposed_form_basic::options_form in views/vefl_plugin_exposed_form_basic.inc
Provide a form for setting options.
vefl_plugin_exposed_form_bef::exposed_form_alter in views/vefl_plugin_exposed_form_bef.inc
Views exposed form alter function.
vefl_plugin_exposed_form_bef::options_form in views/vefl_plugin_exposed_form_bef.inc
Provide a form for setting options.
vefl_views_exposed_form_preprocess in includes/vefl.inc
A theme preprocess function for views_exposed_form.

File

./vefl.module, line 81
Provides functionality to output Views exposed filters in layout.

Code

function vefl_form_actions() {
  $actions = array(
    'sort_by' => t('Sort by'),
    'sort_order' => t('Sort order'),
    'items_per_page' => t('Items per page'),
    'offset' => t('Offset'),
    'button' => t('Submit button'),
    'reset_button' => t('Reset button'),
  );
  return $actions;
}