You are here

function globallink_fieldable_panels_dashboard_form in GlobalLink Connect for Drupal 7.7

Same name and namespace in other branches
  1. 7.5 globallink_fieldable_panels/globallink_fieldable_panels_send.inc \globallink_fieldable_panels_dashboard_form()
  2. 7.6 globallink_fieldable_panels/globallink_fieldable_panels_send.inc \globallink_fieldable_panels_dashboard_form()

Builds form to create a fieldable panels submission.

1 string reference to 'globallink_fieldable_panels_dashboard_form'
globallink_fieldable_panels_dashboard in globallink_fieldable_panels/globallink_fieldable_panels_send.inc
Builds forms on fieldable panels send dashboard.

File

globallink_fieldable_panels/globallink_fieldable_panels_send.inc, line 214

Code

function globallink_fieldable_panels_dashboard_form() {
  module_load_include('inc', 'globallink_fieldable_panels', 'globallink_fieldable_panels');
  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_FPP,
      'sessionKey' => 'fpids',
    ),
  ), 'setting');
  drupal_add_css($module_path . '/css/globallink.css');
  $form = array();
  $default_checked = array();
  if (isset($_SESSION['fpids'])) {
    $default_checked = $_SESSION['fpids'];
  }
  $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_fieldable_panels_language'])) {
      $default = $_SESSION['globallink_selected_fieldable_panels_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] = '&nbsp;&nbsp;' . $value . '<BR/>';
      }
      else {
        $target_lang_arr[$key] = '&nbsp;&nbsp;' . $value . '&nbsp;&nbsp;&nbsp;&nbsp;';
      }
    }
    $page_count = TPT_PAGER_LIMIT;
    if (isset($_SESSION['globallink_fieldable_panels_page_count'])) {
      $page_count = $_SESSION['globallink_fieldable_panels_page_count'][0];
    }
    $header = array(
      'title' => array(
        'field' => 'fpp.title',
        'data' => t('Fieldable Panels Pane Title'),
      ),
      'category' => array(
        'field' => 'fpp.category',
        'data' => t('Category'),
      ),
      'lang' => t('Language'),
      'active' => t('In Active Submission'),
      'preview' => t('Preview'),
    );
    $query = db_select(GLOBALLINK_ENTITY_TYPE_FPP, 'fpp')
      ->fields('fpp')
      ->condition('language', $default, '=')
      ->extend('PagerDefault')
      ->limit($page_count)
      ->extend('TableSort');
    $sort_order = isset($_GET['order']) ? $_GET['order'] : '';
    if ($sort_order == '') {
      $query
        ->orderBy('fpid', 'DESC');
    }
    else {
      $query
        ->orderByHeader($header);
    }
    $results = $query
      ->execute();
    $fpp_info = entity_get_info('fieldable_panels_pane');
    $count = 0;
    $rows = array();
    foreach ($results as $item) {
      $bundles = $fpp_info['bundles'];
      $bundle = $item->bundle;
      $bundle_label = '';
      if (isset($bundles) && isset($bundles[$bundle]) && isset($bundles[$bundle]['label'])) {
        $bundle_label = $bundles[$bundle]['label'];
      }
      $count++;
      $active = '';
      $active_arr = globallink_fpp_get_active_submission_by_id($item->fpid);
      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) . '&nbsp;&nbsp;- &nbsp;&nbsp;' . $active_row->sub_target_lang_name . ' <BR/> ';
        }
      }
      $rows[$item->fpid] = array(
        'fpid' => l($item->fpid, 'admin/structure/fieldable-panels-panes/view/' . $item->fpid . '/edit', array(
          'attributes' => array(
            'target' => '_blank',
          ),
        )),
        'title' => $item->title,
        'bundle' => $bundle_label,
        'category' => $item->category,
        'lang' => $languages[$item->language],
        'active' => $active,
        'preview' => globallink_fieldable_panels_make_preview_link('Preview', $item->fpid),
      );
    }
    $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;
}