You are here

function globallink_fieldable_panels_receive_submissions in GlobalLink Connect for Drupal 7.5

Same name and namespace in other branches
  1. 7.6 globallink_fieldable_panels/globallink_fieldable_panels_receive.inc \globallink_fieldable_panels_receive_submissions()

Builds forms on fieldable panels 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_fieldable_panels_receive_submissions'
globallink_fieldable_panels_menu in globallink_fieldable_panels/globallink_fieldable_panels.module
Implements hook_menu().

File

globallink_fieldable_panels/globallink_fieldable_panels_receive.inc, line 12

Code

function globallink_fieldable_panels_receive_submissions($type) {
  $_SESSION['transpefect_fieldable_panels_receive_type'] = $type;
  $arr = array();
  $arr[] = drupal_get_form('globallink_fieldable_panels_receive_filter_form');
  $arr[] = drupal_get_form('globallink_fieldable_panels_receive_pager_form');
  $arr[] = drupal_get_form('globallink_fieldable_panels_receive_form');
  return $arr;
}