function globallink_interface_active_submissions in GlobalLink Connect for Drupal 7.6
Same name and namespace in other branches
- 7.5 globallink_interface/globallink_interface_active_submissions.inc \globallink_interface_active_submissions()
Builds forms on interface active submissions dashboard.
Parameters
string $type: The type of task we are working on.
Return value
array Array of forms for the interface active submissions dashboard.
1 string reference to 'globallink_interface_active_submissions'
- globallink_interface_menu in globallink_interface/
globallink_interface.module - Implements hook_menu().
File
- globallink_interface/
globallink_interface_active_submissions.inc, line 12
Code
function globallink_interface_active_submissions($type) {
$_SESSION['transpefect_interface_active_type'] = $type;
$array = array();
$array[] = drupal_get_form('globallink_interface_active_select_form');
$array[] = drupal_get_form('globallink_interface_active_pager_form');
$array[] = drupal_get_form('globallink_interface_active_form');
return $array;
}