function globallink_commerce_dashboard_form in GlobalLink Connect for Drupal 7.7
Builds form to create a commerce submission.
1 string reference to 'globallink_commerce_dashboard_form'
- globallink_commerce_dashboard in globallink_commerce/
globallink_commerce_send.inc - Builds forms on commerce send dashboard.
File
- globallink_commerce/
globallink_commerce_send.inc, line 214
Code
function globallink_commerce_dashboard_form() {
module_load_include('inc', 'globallink_commerce', 'globallink_commerce');
module_load_include('inc', 'globallink', 'globallink');
module_load_include('inc', 'globallink', 'globallink_send_translations');
$module_path = drupal_get_path('module', 'globallink');
drupal_add_js($module_path . '/js/globallink_send_translations.js');
drupal_add_js(array(
'globallinkSendTranslations' => array(
'selectAll' => base_path() . globallink_get_root_menu('create-submission/select_all_js'),
'selectedPath' => base_path() . globallink_get_root_menu('create-submission/select_id_js'),
'selectedType' => GLOBALLINK_ENTITY_TYPE_COM,
'sessionKey' => 'pids',
),
), 'setting');
drupal_add_css($module_path . '/css/globallink.css');
$form = array();
$default_checked = array();
if (isset($_SESSION['pids'])) {
$default_checked = $_SESSION['pids'];
}
$languages = globallink_get_mapped_drupal_locales(FALSE);
if (isset($languages) && count($languages) > 1) {
$target_lang_arr = globallink_get_mapped_locales_with_drupal_desc(FALSE);
$source_lang_arr = globallink_get_mapped_locales_with_drupal_desc(FALSE);
$default_language = language_default();
$default = $default_language->language;
if (!empty($_SESSION['globallink_selected_commerce_language'])) {
$default = $_SESSION['globallink_selected_commerce_language'];
}
unset($target_lang_arr[globallink_get_locale_code($default)]);
$t_count = 0;
foreach ($target_lang_arr as $key => $value) {
$t_count++;
if ($t_count % 2 === 0) {
$target_lang_arr[$key] = ' ' . $value . '<BR/>';
}
else {
$target_lang_arr[$key] = ' ' . $value . ' ';
}
}
$page_count = TPT_PAGER_LIMIT;
if (isset($_SESSION['globallink_commerce_page_count'])) {
$page_count = $_SESSION['globallink_commerce_page_count'][0];
}
$header = array(
'title' => array(
'field' => 'cp.title',
'data' => t('Commerce Product Title'),
),
'bundle' => array(
'field' => 'cp.type',
'data' => t('Product Type'),
),
'lang' => t('Language'),
'active' => t('In Active Submission'),
'preview' => t('Preview'),
);
$query = db_select(GLOBALLINK_ENTITY_TYPE_COM, 'cp')
->fields('cp')
->condition('language', $default, '=')
->extend('PagerDefault')
->limit($page_count)
->extend('TableSort');
$sort_order = isset($_GET['order']) ? $_GET['order'] : '';
if ($sort_order == '') {
$query
->orderBy('product_id', 'DESC');
}
else {
$query
->orderByHeader($header);
}
$results = $query
->execute();
$cp_info = entity_get_info('commerce_product');
$count = 0;
$rows = array();
foreach ($results as $item) {
$count++;
$active = '';
$active_arr = globallink_cp_get_active_submission_by_id($item->product_id);
if (!empty($active_arr)) {
foreach ($active_arr as $active_row) {
$l_title = globallink_format_display_string($active_row->submission);
$l_href = 'admin/globallink-translations/workbench/all/' . $active_row->submission_rid . '/' . $active_row->target_lang_code;
$l_options = array();
$active .= l($l_title, $l_href, $l_options) . ' - ' . $active_row->sub_target_lang_name . ' <BR/> ';
}
}
$rows[$item->product_id] = array(
'pid' => l($item->product_id, 'admin/structure/commerce/view/' . $item->product_id . '/edit', array(
'attributes' => array(
'target' => '_blank',
),
)),
'title' => $item->title,
'bundle' => $item->type,
'lang' => $languages[$item->language],
'active' => $active,
'preview' => globallink_commerce_make_preview_link('Preview', $item->product_id),
);
}
$cart_count = get_cart_count();
globallink_add_cart_form_elements($form, $header, $rows, $default_checked, $cart_count);
if ($count > 0) {
$form['pager'] = array(
'#markup' => theme('pager'),
);
}
}
// Very important
form_load_include($form_state, 'inc', 'globallink', 'globallink_send_translations');
return $form;
}