function globallink_taxonomy_receive_submissions in GlobalLink Connect for Drupal 7.6
Same name and namespace in other branches
- 7.5 globallink_taxonomy/globallink_taxonomy_receive.inc \globallink_taxonomy_receive_submissions()
Builds forms on taxonomy receive dashboard.
Parameters
string $type: The type of task we are working on.
Return value
array Array of forms for the taxonomy receive dashboard.
1 string reference to 'globallink_taxonomy_receive_submissions'
- globallink_taxonomy_menu in globallink_taxonomy/
globallink_taxonomy.module - Implements hook_menu().
File
- globallink_taxonomy/
globallink_taxonomy_receive.inc, line 12
Code
function globallink_taxonomy_receive_submissions($type) {
$_SESSION['transpefect_taxonomy_receive_type'] = $type;
$arr = array();
$arr[] = drupal_get_form('globallink_taxonomy_receive_filter_form');
$arr[] = drupal_get_form('globallink_taxonomy_receive_pager_form');
$arr[] = drupal_get_form('globallink_taxonomy_receive_form');
return $arr;
}