You are here

juicebox.theme.inc in Juicebox HTML5 Responsive Image Galleries 7.2

Same filename and directory in other branches
  1. 7 themes/juicebox.theme.inc

Theme related functions for processing output related to Juicebox galleries.

File

themes/juicebox.theme.inc
View source
<?php

/**
 * @file
 * Theme related functions for processing output related to Juicebox galleries.
 */

/**
 * Returns HTML for embedding a Juicebox gallery.
 *
 * @param array $variables
 *   An associative array containing variables used to render this HTML.
 *
 * @ingroup themeable
 */
function theme_juicebox_embed_markup(&$variables) {
  $settings = $variables['settings'];
  $output = '';

  // Create the gallery embed markup. This is what the Juicebox javascript will
  // use to generate the final gallery markup.
  $output .= '<div class="' . trim('juicebox-parent ' . $settings['custom_parent_classes']) . '">' . "\n";
  $output .= render($variables['c_links']);
  $output .= '<div id="' . $variables['gallery_id'] . '" class="juicebox-container">' . "\n";

  // Also create a search engine friendly version of the gallery. This markup
  // will only be seen by crawlers and users with javascript disabled.
  $bypass_noscript = array_key_exists('addseocontent', $variables['gallery_options']) && $variables['gallery_options']['addseocontent'] == 'FALSE';
  if (!$bypass_noscript) {
    $output .= '<noscript>' . "\n";
    $output .= '<!-- Image gallery content for non-javascript devices -->' . "\n";
    if (array_key_exists('gallerytitle', $variables['gallery_options'])) {
      $output .= '<h1 class="jb-name">' . $variables['gallery_options']['gallerytitle'] . '</h1>' . "\n";
    }
    if (array_key_exists('gallerydescription', $variables['gallery_options'])) {
      $output .= '<p class="jb-description">' . $variables['gallery_options']['gallerydescription'] . '</p>' . "\n";
    }
    foreach ($variables['gallery_images'] as $image) {
      $img_vars = array();
      $img_vars['path'] = $image['src_data']['imageURL'];
      if (!empty($image['title'])) {
        $img_vars['title'] = $image['title'];
        $image['title'] = '<span class="jb-title">' . $image['title'] . '</span><br/>';
      }
      if (!empty($image['caption'])) {
        $img_vars['alt'] = $image['caption'];
        $image['caption'] = '<span class="jb-caption">' . $image['caption'] . '</span>';
      }
      $output .= '<p class="jb-image">' . theme('image', $img_vars) . '<br/>' . $image['title'] . $image['caption'] . '</p>' . "\n";
    }
    $output .= '</noscript>' . "\n";
  }
  $output .= '</div></div>' . "\n";
  return $output;
}

/**
 * Proprocess logic for the juicebox_debug_markup theme function.
 *
 * @param array $variables
 *   An associative array containing variables used to render this HTML.
 *
 * @ingroup themeable
 */
function juicebox_preprocess_juicebox_debug_markup(&$variables) {

  // Calculate the XML link that will be displayed. For this display no query
  // strings should be shown and the link should be absolute.
  $xml_url = url($variables['xml']['path'], array(
    'absolute' => TRUE,
  ));
  $variables['xml_link'] = l($xml_url, $variables['xml']['path'], array(
    'absolute' => TRUE,
  ));

  // Get image count.
  $variables['image_count'] = count($variables['gallery_images']);

  // Get the gallery option list in a displayable format.
  $variables['option_list'] = array();
  foreach ($variables['gallery_options'] as $option_key => $option_value) {
    $variables['option_list'][] = $option_key . '=' . $option_value;
  }

  // Get the library info in a displayable format.
  $library = juicebox_library_detect(FALSE, TRUE);
  $variables['lib_status'] = t('Locally Installed');
  if (empty($library['installed'])) {
    $variables['lib_status'] = t('Not Locally Installed');
  }
  if (!empty($library['version'])) {
    $variables['lib_status'] = $variables['lib_status'] . ', ' . $library['version'];
  }
}

/**
 * Returns HTML for the alternative "debug" display of a Juicebox gallery.
 *
 * @param array $variables
 *   An associative array containing variables used to render this HTML.
 *
 * @ingroup themeable
 */
function theme_juicebox_debug_markup(&$variables) {
  $settings = $variables['settings'];
  $output = '';

  // Display a structured list of each debug detail.
  $output .= '<div class="' . trim('juicebox-parent ' . $settings['custom_parent_classes']) . '">' . "\n";
  $output .= render($variables['c_links']);
  $output .= '<div id="' . $variables['gallery_id'] . '" class="juicebox-container juicebox-placeholder juicebox-debug-info">' . "\n";
  $output .= '<p>' . t('Showing debugging information in place of gallery.') . '</p>';
  $output .= '<dl>';
  $output .= '<dt>' . t('Gallery ID') . '</dt>';
  $output .= '<dd>' . $variables['gallery_id'] . '</dd>';
  $output .= '<dt>' . t('XML URL') . '</dt>';
  $output .= '<dd>' . $variables['xml_link'] . '</dd>';
  $output .= '<dt>' . t('Juicebox Javascript Library') . '</dt>';
  $output .= '<dd>' . $variables['lib_status'] . '</dd>';
  $output .= '<dt>' . t('Image Count') . '</dt>';
  $output .= '<dd>' . $variables['image_count'] . ' ' . t('images') . '</dd>';
  $output .= '<dt>' . t('Juicebox Gallery Options') . '</dt>';
  $output .= '<dd>' . theme('item_list', array(
    'items' => $variables['option_list'],
  )) . '</dd>';
  $output .= '</dl>';
  $output .= '</div></div>';
  return $output;
}

Functions

Namesort descending Description
juicebox_preprocess_juicebox_debug_markup Proprocess logic for the juicebox_debug_markup theme function.
theme_juicebox_debug_markup Returns HTML for the alternative "debug" display of a Juicebox gallery.
theme_juicebox_embed_markup Returns HTML for embedding a Juicebox gallery.