You are here

function globallink_entity_receive_submissions in GlobalLink Connect for Drupal 7.6

Same name and namespace in other branches
  1. 7.5 globallink_entity/globallink_entity_receive.inc \globallink_entity_receive_submissions()

Builds forms on entity receive dashboard.

Parameters

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

Return value

array Array of forms for the entity receive dashboard.

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

File

globallink_entity/globallink_entity_receive.inc, line 12

Code

function globallink_entity_receive_submissions($type) {
  $_SESSION['transpefect_entity_receive_type'] = $type;
  $array = array();
  $array[] = drupal_get_form('globallink_entity_receive_filter_form');
  $array[] = drupal_get_form('globallink_entity_receive_pager_form');
  $array[] = drupal_get_form('globallink_entity_receive_form');
  return $array;
}