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