You are here

function globallink_entity_active_submissions in GlobalLink Connect for Drupal 7.5

Same name and namespace in other branches
  1. 7.6 globallink_entity/globallink_entity_active_submissions.inc \globallink_entity_active_submissions()

Builds forms on entity active submissions dashboard.

Parameters

string $type: The type of task we are working on.

Return value

array Array of forms for the entity active submissions dashboard.

1 string reference to 'globallink_entity_active_submissions'
globallink_entity_menu in globallink_entity/globallink_entity.module
Implements hook_menu().

File

globallink_entity/globallink_entity_active_submissions.inc, line 12

Code

function globallink_entity_active_submissions($type) {
  $_SESSION['transpefect_entity_active_type'] = $type;
  $array = array();
  $array[] = drupal_get_form('globallink_entity_active_select_form');
  $array[] = drupal_get_form('globallink_entity_active_pager_form');
  $array[] = drupal_get_form('globallink_entity_active_form');
  return $array;
}