function globallink_commerce_dashboard in GlobalLink Connect for Drupal 7.7
Builds forms on commerce send dashboard.
Parameters
string $type: The type of task we are working on.
Return value
array Array of forms for the commerce send dashboard.
1 string reference to 'globallink_commerce_dashboard'
- globallink_commerce_menu in globallink_commerce/
globallink_commerce.module - Implements hook_menu().
File
- globallink_commerce/
globallink_commerce_send.inc, line 12
Code
function globallink_commerce_dashboard($type) {
$default_date = format_date(REQUEST_TIME + 7 * 24 * 60 * 60, 'custom', 'm/d/Y');
drupal_add_library('system', 'ui.datepicker');
drupal_add_js('jQuery(function() {
jQuery(document).ajaxComplete(function() {
jQuery(".pickadate1").datepicker({
dateFormat: "mm/dd/yy",
defaultDate: "' . $default_date . '",
minDate: 0
});
});
});', array(
'group' => CSS_THEME,
'type' => 'inline',
'scope' => 'header',
'weight' => 80,
));
$_SESSION['globallink_selected_type'] = $type;
$array = array();
$array[] = drupal_get_form('globallink_commerce_dashboard_filter_form');
$array[] = drupal_get_form('globallink_commerce_dashboard_pager_form');
$array[] = drupal_get_form('globallink_commerce_dashboard_form');
return $array;
}