View source  
  <?php
module_load_include('inc', 'biblio', 'biblio.pages');
function theme_biblio_openurl($variables) {
  $open_url = $variables['openURL'];
  $openurl_image = variable_get('biblio_openurlimage', '');
  if ($openurl_image != '') {
    $output .= '<div class="biblio-openurl-image"><a href="' . $open_url . '"target=_blank><img border="0" src="' . $openurl_image . '"/></a></div>';
  }
  else {
    $output .= '<div class="biblio-openurl-text"><a href="' . $open_url . '" target=_blank>' . t('Find It Via OpenURL!') . '</a></div>';
  }
  return $output;
}
function biblio_openurl($node) {
  global $user;
  $open_url = '';
  
  $open_url_resolver = !empty($user->data['biblio_baseopenurl']) ? $user->data['biblio_baseopenurl'] : '';
  if (empty($open_url_resolver)) {
    $open_url_resolver = variable_get('biblio_baseopenurl', '');
  }
  if (!empty($open_url_resolver)) {
    $co = biblio_contextObject($node);
    $sid = "biblio:" . variable_get('site_name', 'Drupal');
    $user_sid = !empty($user->data['biblio_openurl_sid']) ? $user->data['biblio_openurl_sid'] : '';
    $co["sid"] = !empty($user_sid) ? $user_sid : variable_get('biblio_openurl_sid', $sid);
    $open_url = $open_url_resolver;
    if (!preg_match("/\\?/", $open_url_resolver)) {
      $open_url .= "?";
    }
    else {
      $open_url .= "&";
    }
    $open_url .= "ctx_ver=Z39.88-2004";
    foreach ($co as $coKey => $coValue) {
      $coKey = preg_replace("/rft./", "", $coKey);
      $coKey = preg_replace("/au[0-9]*/", "au", $coKey);
      $open_url .= "&" . $coKey . "=" . rawurlencode($coValue);
    }
  }
  return $open_url;
}
function theme_biblio_long($variables) {
  $output = '';
  $node = $variables['node'];
  if (module_exists('popups')) {
    popups_add_popups();
  }
  $output .= filter_xss($node->biblio_coins, array(
    'span',
  ));
  $layout = variable_get('biblio_node_layout', 'orig');
  if (variable_get('biblio_node_layout', 'orig') == 'ft' && strlen(trim($node->body)) && user_access('view full text')) {
    $output .= '<div class="biblio-head">' . theme('biblio_style', $variables) . '</div>';
    $annotation_field = variable_get('biblio_annotations', 'none');
    if ($annotation_field != 'none' && $node->{$annotation_field}) {
      $output .= '<div class="biblio-annotation">';
      $output .= filter_xss($node->{$annotation_field}, biblio_get_allowed_tags());
      $output .= '</div>';
    }
    $output .= check_markup($node->body);
    if (biblio_access('export', $node)) {
      $output .= theme('biblio_export_links', array(
        'node' => $node,
      ));
    }
    return $output;
  }
  foreach ((array) $node->biblio_contributors as $auth) {
    if ($auth['auth_category'] == 1) {
      $authors[] = theme('biblio_author_link', array(
        'author' => $auth,
      ));
    }
  }
  $authors = implode('; ', (array) $authors);
  $openurl_base = variable_get('biblio_baseopenurl', '');
  if ($openurl_base) {
    $output .= theme('biblio_openurl', array(
      'openURL' => biblio_openurl($node),
    ));
  }
  $output .= '<div class="biblio_type"><h3>' . t("Publication Type") . ":</h3> {$node->biblio_type_name}</div>\n";
  $output .= '<div class="biblio_authors"><h3>' . t("Authors") . ':</h3> ' . $authors . "</div>\n";
  $output .= '<div class="biblio_source"><h3>' . t("Source") . ': </h3> ';
  $source = NULL;
  if ($node->biblio_secondary_title) {
    $source .= check_plain($node->biblio_secondary_title);
  }
  if ($node->biblio_publisher) {
    $source .= $source ? ", " : "";
    $source .= check_plain($node->biblio_publisher);
  }
  if ($node->biblio_volume) {
    $source .= $source ? ", " : "";
    $source .= t('Volume') . ' ' . check_plain($node->biblio_volume);
  }
  if ($node->biblio_issue) {
    $source .= $source ? ", " : "";
    $source .= t('Issue') . ' ' . check_plain($node->biblio_issue);
  }
  if ($node->biblio_number) {
    $source .= $source ? ", " : "";
    $source .= t('Number') . ' ' . check_plain($node->biblio_number);
  }
  if ($node->biblio_place_published) {
    $source .= $source ? ", " : "";
    $source .= check_plain($node->biblio_place_published);
  }
  if ($node->biblio_pages) {
    $source .= $source ? ", " : "";
    $source .= 'p.' . check_plain($node->biblio_pages);
  }
  if (isset($node->biblio_year)) {
    $node->biblio_year = _biblio_text_year($node->biblio_year);
    $source .= ' (' . check_plain($node->biblio_year) . ')';
  }
  $output .= "{$source}</div>\n";
  if ($node->biblio_isbn) {
    $output .= '<h3>' . t("ISBN") . ':</h3> ' . check_plain($node->biblio_isbn) . "\n";
  }
  if ($node->biblio_call_number) {
    $output .= '<h3>' . t("Call Number") . ':</h3> ' . check_plain($node->biblio_call_number) . "\n";
  }
  if ($node->biblio_accession_number) {
    $output .= '<h3>' . t("Accession Number") . ':</h3> ' . check_plain($node->biblio_accession_number) . "\n";
  }
  if ($node->biblio_other_number) {
    $output .= '<h3>' . t("Other Number") . ':</h3> ' . check_plain($node->biblio_other_number) . "\n";
  }
  if ($node->biblio_url) {
    $attrib = variable_get('biblio_links_target_new_window', FALSE) ? array(
      'target' => '_blank',
    ) : array();
    $output .= '<h3>' . t("URL") . ':</h3>' . l($node->biblio_url, $node->biblio_url, $attrib) . "\n";
  }
  if (!empty($node->biblio_keywords)) {
    $output .= '<h3>' . t("Keywords") . ':</h3> ' . _biblio_keyword_links($node->biblio_keywords) . "\n";
  }
  if ($node->biblio_abst_e) {
    $output .= '<h3>' . t("Abstract") . ':</h3> ' . check_markup($node->biblio_abst_e) . "\n";
  }
  if ($node->biblio_abst_f) {
    $output .= '<p>' . check_markup($node->biblio_abst_f) . "\n";
  }
  if ($node->biblio_notes) {
    $output .= '<h3>' . t("Notes") . ': </h3>' . check_markup($node->biblio_notes) . "\n";
  }
  if (!empty($node->body) && user_access('view full text')) {
    $output .= drupal_render(field_view_field('node', $node, 'body'));
  }
  return $output;
}
function _biblio_get_field_information($biblio_type, $only_visible = FALSE) {
  $fields = array();
  $visible = $only_visible ? ' AND (bt.common = 1 OR bt.visible=1) ' : '';
  $result = db_query("SELECT b.*, btd.*, btt.name AS type_name\n                      FROM {biblio_fields} AS b\n                      INNER JOIN {biblio_field_type} AS bt ON bt.fid = b.fid\n                      INNER JOIN {biblio_field_type_data} AS btd ON btd.ftdid = bt.ftdid\n                      INNER JOIN {biblio_types} as btt ON btt.tid = bt.tid\n                      WHERE bt.tid = :tid {$visible}\n                      ORDER BY bt.weight ASC", array(
    ':tid' => $biblio_type,
  ), array(
    'fetch' => PDO::FETCH_ASSOC,
  ));
  foreach ($result as $row) {
    $fields[$row['fid']] = $row;
  }
  return $fields;
}
function theme_biblio_tabular($variables) {
  module_load_include('inc', 'biblio', '/includes/biblio.contributors');
  $biblio = $variables['biblio'];
  $wrapper = biblio_wrapper($biblio);
  $base = $variables['base'];
  static $citeproc;
  if (module_exists('popups')) {
    popups_add_popups();
  }
  $tid = $biblio->publication_type;
  
  if (!isset($biblio->biblio_type_name) && isset($biblio->publication_type)) {
    
    $types = biblio_types();
    $type_name = $types[$biblio->publication_type]->name;
    $biblio->biblio_type_name = drupal_ucfirst(_biblio_localize_type($type_name));
  }
  $rows[] = array(
    array(
      'data' => t('Publication Type'),
      'class' => array(
        'biblio-row-title',
      ),
    ),
    array(
      'data' => $biblio->biblio_type_name,
    ),
  );
  $attrib = variable_get('biblio_links_target_new_window', FALSE) ? array(
    'target' => '_blank',
  ) : array();
  $doi = $wrapper->biblio_doi
    ->value();
  if (!empty($doi)) {
    $doi_url = '';
    if (($doi_start = strpos($wrapper->biblio_doi
      ->value(), '10.')) !== FALSE) {
      $doi = substr($wrapper->biblio_doi
        ->value(), $doi_start);
      $doi_url .= 'http://dx.doi.org/' . $doi;
      $doi = l($doi, $doi_url, $attrib);
    }
  }
  $biblio_fields['contributors'] = array(
    'value' => biblio_format_authors($biblio->biblio_contributors),
    'label' => 'Authors',
  );
  if (isset($biblio->biblio_contributors)) {
    foreach ($biblio->biblio_contributors as $cid => $contributor) {
    }
  }
  foreach ($biblio as $field_name => $data) {
    if (isset($wrapper->{$field_name})) {
      $field_value = $wrapper->{$field_name}
        ->value();
      $field_info = field_info_instance('biblio', $field_name, $biblio->publication_type);
      if (isset($field_value) && !empty($field_info)) {
        $biblio_fields[$field_name]['value'] = $wrapper->{$field_name}
          ->value();
        $biblio_fields[$field_name]['label'] = $field_info['label'];
      }
    }
  }
  foreach ($biblio_fields as $field => $row) {
    if (isset($wrapper->{$field})) {
      $value = $wrapper->{$field}
        ->value();
    }
    
    if ($field == 'contributors') {
      $data = $row['value'];
    }
    elseif (empty($value) || $field == 'biblio_coins') {
      continue;
    }
    else {
      switch ($field) {
        case 'biblio_keywords':
          $data = _biblio_keyword_links($value, $base);
          break;
        case 'biblio_url':
          $data = l($value, $value, $attrib);
          break;
        case 'biblio_doi':
          $data = $doi;
          break;
        default:
          if (isset($row['type']) && $row['type'] == 'text_format') {
            $data = check_markup($value, $wrapper->biblio_formats[$field]);
          }
          else {
            $data = is_string($value) ? check_plain($value) : '';
          }
      }
    }
    $rows[] = array(
      array(
        'data' => t($row['label']),
        'class' => array(
          'biblio-row-title',
        ),
      ),
      array(
        'data' => $data,
      ),
    );
  }
  
  if (isset($biblio->body) && !empty($biblio->body) && user_access('view full text')) {
    $rows[] = array(
      array(
        'data' => t('Full Text'),
        'valign' => 'top',
      ),
      array(
        'data' => drupal_render(field_view_field('biblio', $biblio, 'body', array(
          'label' => 'hidden',
        ))),
      ),
    );
  }
  $output = '<div id="biblio-node">';
  $output .= filter_xss($wrapper->biblio_coins
    ->value(), array(
    'span',
  ));
  $header = array();
  $output .= theme('table', array(
    'header' => $header,
    'rows' => $rows,
  ));
  $output .= '</div>';
  return $output;
}
function _biblio_get_latin1_regex() {
  $alnum = "[:alnum:]ÄÅ�?ÀÂÃÇÉÈÊËÑÖØÓÒÔÕÜÚÙÛ�?ÌÎ�?Æäåáàâãçéèêëñöøóòôõüúùûíìîïæÿß";
  
  $alpha = "[:alpha:]ÄÅ�?ÀÂÃÇÉÈÊËÑÖØÓÒÔÕÜÚÙÛ�?ÌÎ�?Æäåáàâãçéèêëñöøóòôõüúùûíìîïæÿß";
  
  $cntrl = "[:cntrl:]";
  
  $dash = "-–";
  
  $digit = "[\\d]";
  
  $graph = "[:graph:]ÄÅ�?ÀÂÃÇÉÈÊËÑÖØÓÒÔÕÜÚÙÛ�?ÌÎ�?Æäåáàâãçéèêëñöøóòôõüúùûíìîïæÿß";
  
  $lower = "[:lower:]äåáàâãçéèêëñöøóòôõüúùûíìîïæÿß";
  
  $print = "[:print:]ÄÅ�?ÀÂÃÇÉÈÊËÑÖØÓÒÔÕÜÚÙÛ�?ÌÎ�?Æäåáàâãçéèêëñöøóòôõüúùûíìîïæÿß";
  
  $punct = "[:punct:]";
  
  $space = "[\\s]";
  
  $upper = "[:upper:]ÄÅ�?ÀÂÃÇÉÈÊËÑÖØÓÒÔÕÜÚÙÛ�?ÌÎ�?Æ";
  
  $word = "_[:alnum:]ÄÅ�?ÀÂÃÇÉÈÊËÑÖØÓÒÔÕÜÚÙÛ�?ÌÎ�?Æäåáàâãçéèêëñöøóòôõüúùûíìîïæÿß";
  
  $patternModifiers = "";
  return array(
    $alnum,
    $alpha,
    $cntrl,
    $dash,
    $digit,
    $graph,
    $lower,
    $print,
    $punct,
    $space,
    $upper,
    $word,
    $patternModifiers,
  );
}
function _biblio_get_utf8_regex() {
  
  $alnum = "\\p{Ll}\\p{Lu}\\p{Lt}\\p{Lo}\\p{Nd}";
  
  $alpha = "\\p{Ll}\\p{Lu}\\p{Lt}\\p{Lo}";
  
  $cntrl = "\\p{C}";
  
  $dash = "\\p{Pd}";
  
  $digit = "\\p{Nd}";
  
  $graph = "^\\p{C}\t\n\f\r\\p{Z}";
  
  $lower = "\\p{Ll}\\p{M}";
  
  $print = "\\P{C}";
  
  $punct = "\\p{P}";
  
  $space = "\t\n\f\r\\p{Z}";
  
  $upper = "\\p{Lu}\\p{Lt}";
  
  $word = "_\\p{Ll}\\p{Lu}\\p{Lt}\\p{Lo}\\p{Nd}";
  
  $patternModifiers = "u";
  
  return array(
    $alnum,
    $alpha,
    $cntrl,
    $dash,
    $digit,
    $graph,
    $lower,
    $print,
    $punct,
    $space,
    $upper,
    $word,
    $patternModifiers,
  );
}
function _biblio_get_regex_patterns() {
  
  if (!@preg_match('/\\pL/u', 'a')) {
    
    return _biblio_get_latin1_regex();
  }
  else {
    
    return _biblio_get_utf8_regex();
  }
}
function biblio_format_authors($contributions) {
  if (module_exists('biblio_citeproc')) {
    static $auth_proc;
    if (!isset($auth_proc)) {
      module_load_include('inc', 'biblio_citeproc', 'CSL');
      $csl = '<name form="long" name-as-sort-order="all" sort-separator=", " initialize-with="" delimiter=", " />';
      $csl_doc = new DOMDocument();
      $csl_doc
        ->loadXML($csl);
      $auth_proc = new csl_rendering_element($csl_doc);
    }
    $data = $auth_proc
      ->render($contributions);
  }
  else {
    $style_name = biblio_get_style();
    $style_function = "biblio_style_{$style_name}" . "_author_options";
    if (!function_exists($style_function)) {
      module_load_include('inc', 'biblio', "/styles/biblio_style_{$style_name}");
    }
    $author_options = $style_function();
    $author_options['numberOfAuthorsTriggeringEtAl'] = 100;
    
    $data = theme('biblio_format_authors', array(
      'contributions' => $contributions,
      'options' => $author_options,
    ));
  }
  return $data;
}
function theme_biblio_format_authors($variables) {
  $contributions = $variables['contributions'];
  $options = $variables['options'];
  if (empty($contributions)) {
    return;
  }
  list($alnum, $alpha, $cntrl, $dash, $digit, $graph, $lower, $print, $punct, $space, $upper, $word, $patternModifiers) = _biblio_get_regex_patterns();
  $base = variable_get('biblio_base', 'biblio');
  $author_links = variable_get('biblio_author_links', 1);
  $contributionCount = count($contributions);
  
  $output = "";
  
  $includeStringAfterFirstAuthor = FALSE;
  if (empty($options['numberOfAuthorsTriggeringEtAl'])) {
    $options['numberOfAuthorsTriggeringEtAl'] = $authorCount;
  }
  if (empty($options['includeNumberOfAuthors'])) {
    $options['includeNumberOfAuthors'] = $authorCount;
  }
  
  static $rank = 0;
  foreach ($contributions as $cnid => $contribution) {
    
    $cn_wrap = biblio_wrapper($contribution, 'biblio_contribution');
    
    $cr_wrap = biblio_wrapper($contribution->contributor, 'biblio_contributor');
    $rank++;
    if (!isset($contribution->lastname) && empty($contribution->literal)) {
      module_load_include('inc', 'biblio', '/includes/biblio.contributors');
      $category = $cn_wrap->biblio_contributor_category
        ->value();
      $author = biblio_parse_author($contribution->contributor, (string) $category);
      
    }
    if (empty($author->literal)) {
      if (!empty($author->firstname)) {
        if ($options['shortenGivenNames']) {
          
          $author->firstname = preg_replace("/([{$upper}])[{$lower}]+/{$patternModifiers}", '\\1', $author->firstname);
          
          
          
        }
      }
      if (isset($author->initials)) {
        
        $author->initials = preg_replace("/([{$upper}])\\.+/{$patternModifiers}", "\\1", $author->initials);
        
        
        $author->initials = preg_replace("/(?<=[-{$upper}]) +(?=[-{$upper}])/{$patternModifiers}", "", $author->initials);
        
        
        if (preg_match('/ $/', $options['betweenInitialsDelim'])) {
          
          $author->initials = preg_replace("/-(?=[{$upper}])/{$patternModifiers}", "- ", $author->initials);
        }
        
        $delim = $options['betweenInitialsDelim'];
        $author->initials = preg_replace("/([{$upper}])(?=[^{$lower}]+|\$)/{$patternModifiers}", "\\1{$delim}", $author->initials);
        $shortenInitials = isset($options['numberOfInitialsToKeep']) ? $options['numberOfInitialsToKeep'] : FALSE;
        if ($shortenInitials) {
          $author->initials = drupal_substr($author->initials, 0, $shortenInitials);
        }
        if ($options['shortenGivenNames'] && !empty($author->firstname)) {
          $author->firstname = $author->firstname . $options['betweenInitialsDelim'] . $author->initials;
          if ($shortenInitials) {
            $author->firstname = drupal_substr($author->firstname, 0, $shortenInitials);
          }
        }
        elseif (!empty($author->firstname)) {
          $author->firstname = $author->firstname . ' ' . $author->initials;
        }
        elseif (empty($author->firstname)) {
          $author->firstname = $author->initials;
        }
      }
      
      if (!empty($author->prefix)) {
        $author->lastname = $author->prefix . ' ' . $author->lastname;
      }
      if (!empty($author->suffix)) {
        $author->lastname = $author->lastname . ', ' . $author->suffix;
      }
      if (!empty($author->firstname)) {
        if ($cnid == 0) {
          
          if ($options['initialsBeforeAuthorFirstAuthor']) {
            $author->name = $author->firstname . $options['AuthorsInitialsDelimFirstAuthor'] . $author->lastname;
          }
          else {
            $author->name = $author->lastname . $options['AuthorsInitialsDelimFirstAuthor'] . $author->firstname;
          }
        }
        else {
          
          if ($options['initialsBeforeAuthorStandard']) {
            $author->name = $author->firstname . $options['AuthorsInitialsDelimStandard'] . $author->lastname;
          }
          else {
            $author->name = $author->lastname . $options['AuthorsInitialsDelimStandard'] . $author->firstname;
          }
        }
      }
      else {
        $author->name = $author->lastname;
      }
    }
    if ($author_links) {
      $author->name = theme('biblio_author_link', array(
        'author' => $author,
      ));
    }
    else {
      $author->name = check_plain($author->name);
    }
    
    if ($rank == 0 or $rank + 1 < $contributionCount) {
      
      if ($rank == 0) {
        
        $output .= $author->name;
      }
      else {
        
        $output .= $options['BetweenAuthorsDelimStandard'] . $author->name;
      }
      
      if ($rank + 1 == $options['includeNumberOfAuthors'] and $contributionCount > $options['numberOfAuthorsTriggeringEtAl']) {
        if (preg_match("/__NUMBER_OF_AUTHORS__/", $options['customStringAfterFirstAuthors'])) {
          $customStringAfterFirstAuthors = preg_replace("/__NUMBER_OF_AUTHORS__/", $contributionCount - $options['includeNumberOfAuthors'], $options['customStringAfterFirstAuthors']);
          
        }
        $includeStringAfterFirstAuthor = TRUE;
        break;
      }
    }
    elseif ($contributionCount > 1 and $rank + 1 == $contributionCount) {
      
      $output .= $options['BetweenAuthorsDelimLastAuthor'] . $author->name;
    }
  }
  
  
  
  if ($includeStringAfterFirstAuthor) {
    $output .= $options['customStringAfterFirstAuthors'];
    
  }
  $output = preg_replace("/  +/", " ", $output);
  
  $output = preg_replace("/ +([,.;:?!()]|\$)/", "\\1", $output);
  
  return $output;
}
function theme_biblio_author_link($variables) {
  $author = $variables['author'];
  $uri = drupal_parse_url(request_uri());
  if (!isset($uri['attributes'])) {
    $uri['attributes'] = array();
  }
  $path = $uri['path'];
  $uri['path'] = variable_get('biblio_base', 'biblio');
  $uri['query']['f']['author'] = $author->cid;
  if (isset($author->drupal_uid) && $author->drupal_uid > 0) {
    $uri['attributes'] += array(
      'class' => array(
        'biblio-local-author',
      ),
    );
  }
  if (variable_get('biblio_links_target_new_window', null)) {
    $uri['attributes'] += array(
      'target' => '_blank',
    );
    $uri['html'] = TRUE;
  }
  if (variable_get('biblio_author_link_profile', 0) && isset($author['drupal_uid']) && $author['drupal_uid'] > 0) {
    $profile_path = 'user/' . $author->drupal_uid . '/' . $uri['path'];
    if ($path != '/' . $profile_path) {
      
      $uri['path'] = $profile_path;
      unset($uri['query']);
    }
  }
  return l(trim($author->name), $uri['path'], $uri);
}
function theme_biblio_page_number($variables) {
  $orig_page_info = $variables['orig_page_info'];
  $page_range_delim = $variables['page_range_delim'];
  $single_page_prefix = $variables['single_page_prefix'];
  $page_range_prefix = $variables['page_range_prefix'];
  $total_pages_prefix = $variables['total_pages_prefix'];
  $single_page_suffix = $variables['single_page_suffix'];
  $page_range_suffix = $variables['page_range_prefix'];
  $total_pages_suffix = $variables['total_pages_prefix'];
  $shorten_page_range_end = $variables['single_page_suffix'];
  list($alnum, $alpha, $cntrl, $dash, $digit, $graph, $lower, $print, $punct, $space, $upper, $word, $patternModifiers) = _biblio_get_regex_patterns();
  
  if (preg_match("/\\w*\\d+\\w* *[{$dash}]+ *(?:\\w*\\d+\\w*)?/{$patternModifiers}", $orig_page_info)) {
    
    $orig_page_info = preg_replace("/(\\w*\\d+\\w*) *([{$dash}]+) *(\\w*\\d+\\w*)?(?=[^\\w\\d]|\$)/{$patternModifiers}", "\\1\\2\\3", $orig_page_info);
    
    $partsArray = preg_split("/ +/", $orig_page_info);
    $partsCount = count($partsArray);
    for ($i = 0; $i < $partsCount; $i++) {
      
      if (preg_match("/(\\w*\\d+\\w*)[{$dash}]+\\1(?=[^\\w\\d]|\$)/{$patternModifiers}", $partsArray[$i])) {
        
        $partsArray[$i] = preg_replace("/(\\w*\\d+\\w*)[{$dash}]+\\1(?=[^\\w\\d]|\$)/{$patternModifiers}", $single_page_prefix . "\\1" . $single_page_suffix, $partsArray[$i]);
      }
      elseif (preg_match("/\\w*\\d+\\w*[{$dash}]+(?:\\w*\\d+\\w*)?(?=[^\\w\\d]|\$)/{$patternModifiers}", $partsArray[$i])) {
        
        if ($shorten_page_range_end and preg_match("/\\d+[{$dash}]+\\d+/{$patternModifiers}", $partsArray[$i])) {
          
          list($startPage, $endPage) = preg_split("/[{$dash}]+/{$patternModifiers}", $partsArray[$i]);
          $countStartPage = strlen($startPage);
          $countEndPage = strlen($endPage);
          if ($countStartPage == $countEndPage and $startPage < $endPage) {
            for ($j = 0; $j < $countStartPage; $j++) {
              if (preg_match("/^" . substr($startPage, $j, 1) . "/", $endPage)) {
                
                $endPage = substr($endPage, 1);
                
              }
              else {
                break;
              }
            }
          }
          $partsArray[$i] = $page_range_prefix . $startPage . $page_range_delim . $endPage . $page_range_suffix;
        }
        else {
          
          $partsArray[$i] = preg_replace("/(\\w*\\d+\\w*)[{$dash}]+(\\w*\\d+\\w*)?(?=[^\\w\\d]|\$)/{$patternModifiers}", $page_range_prefix . "\\1" . $page_range_delim . "\\2" . $page_range_suffix, $partsArray[$i]);
        }
      }
    }
    $newPageInfo = join(" ", $partsArray);
    
  }
  else {
    $newPageInfo = $orig_page_info;
    
  }
  return $newPageInfo;
}
function theme_biblio_style($variables) {
  $biblio = $variables['biblio'];
  $wrapper = biblio_wrapper($biblio);
  $style_name = $variables['style_name'];
  $styled_biblio = '';
  module_load_include('inc', 'biblio', "/styles/biblio_style_{$style_name}");
  $style_function = "biblio_style_{$style_name}";
  if (function_exists($style_function)) {
    $styled_biblio = $style_function($biblio);
  }
  else {
    drupal_set_message(t('The style function: @funct does not exist', array(
      '@funct' => $style_function,
    )), 'error');
  }
  return $styled_biblio . filter_xss($wrapper->biblio_coins
    ->value(), array(
    'span',
  ));
}
function theme_biblio_entry($variables) {
  $node = $variables['node'];
  $style_name = $variables['style_name'];
  $output = "\n" . '<div class="biblio-entry">' . "\n";
  $output .= '<div class="biblio-style-' . $style_name . '">' . "\n";
  if (!$node->status) {
    $output .= '<div id="node-' . $node->nid . '" class="node node-unpublished">';
  }
  
  $output .= theme('biblio_style', array(
    'node' => $node,
    'style_name' => $style_name,
  ));
  
  $annotation_field = variable_get('biblio_annotations', 'none');
  if ($annotation_field != 'none' && $node->{$annotation_field}) {
    $output .= '<div class="biblio-annotation">';
    $output .= filter_xss($node->{$annotation_field}, biblio_get_allowed_tags());
    $output .= '</div>';
  }
  $openurl_base = variable_get('biblio_baseopenurl', '');
  if ($openurl_base) {
    $output .= theme('biblio_openurl', array(
      'openURL' => biblio_openurl($node),
    ));
  }
  if (biblio_access('export')) {
    $base = variable_get('biblio_base', 'biblio');
    $output .= theme('biblio_export_links', array(
      'node' => $node,
    ));
  }
  if (biblio_access('download', $node)) {
    
    $output .= theme('biblio_download_links', array(
      'node' => $node,
    ));
  }
  if (!$node->status) {
    $output .= '</div>';
  }
  $output .= "\n</div></div>";
  return $output;
}
function theme_biblio_filters($variables) {
  $form = $variables['form'];
  $output = '';
  if (isset($form['current'])) {
    $output .= '<ul>';
    foreach (element_children($form['current']) as $key) {
      $output .= '<li>' . drupal_render($form['current'][$key]) . '</li>';
    }
    $output .= '</ul>';
  }
  $output .= '<dl class="multiselect">' . (isset($form['current']) ? '<dt><em>' . t('and') . '</em> ' . t('where') . '</dt>' : '') . '<dd class="a">';
  foreach (element_children($form['filter']) as $key) {
    $output .= drupal_render($form['filter'][$key]);
  }
  $output .= '</dd>';
  $output .= '<dt>' . t('is') . '</dt><dd class="b">';
  foreach (element_children($form['status']) as $key) {
    $output .= drupal_render($form['status'][$key]);
  }
  $output .= '</dd>';
  $output .= '</dl>';
  $output .= '<div class="container-inline" id="node-buttons">' . drupal_render($form['buttons']) . '</div>';
  $output .= '<br class="clear" />';
  return $output;
}
function theme_biblio_form_filter($variables) {
  $form = $variables['form'];
  $output .= '<div id="biblio-admin-filter">';
  $output .= drupal_render($form['filters']);
  $output .= '</div>';
  $output .= drupal_render($form);
  return $output;
}
function theme_biblio_field_tab($variables) {
  $form = $variables['form'];
  $rows = array();
  $headers = $form['#header'];
  drupal_add_tabledrag($form['#id'], 'order', 'sibling', 'weight');
  foreach (element_children($form['rows']) as $key) {
    
    $form['rows'][$key]['weight']['#attributes']['class'] = array(
      'weight',
    );
    
    $row = array(
      '',
    );
    $row[] = array(
      'data' => drupal_render($form['rows'][$key]['name']),
    );
    $row[] = array(
      'data' => drupal_render($form['rows'][$key]['title']),
    );
    $row[] = array(
      'data' => drupal_render($form['rows'][$key]['hint']),
    );
    foreach (element_children($form['rows'][$key]['checkboxes']) as $oid) {
      if (is_array($form['rows'][$key]['checkboxes'])) {
        $row[] = array(
          'data' => drupal_render($form['rows'][$key]['checkboxes'][$oid]),
          'title' => $oid,
        );
      }
    }
    $row[] = drupal_render($form['rows'][$key]['weight']);
    $rows[] = array(
      'data' => $row,
      'class' => array(
        'draggable',
      ),
    );
  }
  $output = theme('table', array(
    'header' => $headers,
    'rows' => $rows,
    'attributes' => array(
      'id' => $form['#id'],
    ),
  ));
  $output .= drupal_render_children($form);
  return $output;
}
function theme_biblio_admin_types_edit_form($variables) {
  $form = $variables['form'];
  $output = '';
  $output .= drupal_render($form['help']);
  $output .= drupal_render($form['pub_type']);
  $output .= drupal_render($form['change_type']);
  if (isset($form['type_name'])) {
    $output .= drupal_render($form['type_name']);
  }
  $output .= drupal_render($form['biblio_tabs']);
  $output .= drupal_render_children($form);
  return $output;
}
function theme_biblio_download_links($variables) {
  static $langcode = NULL;
  $file_links = array();
  $biblio = $variables['biblio'];
  if (!isset($langcode)) {
    $langcode = $GLOBALS['language_content']->language;
  }
  $fields = field_attach_view('biblio', $biblio, 'full', $langcode);
  foreach (element_children($fields) as $field) {
    if ($fields[$field]['#access'] && $fields[$field]['#field_type'] == 'file') {
      foreach ($fields[$field]['#items'] as $delta => $item) {
        if (module_exists('filefield_paths')) {
          $alias = drupal_get_path_alias('filefield_paths/alias/' . $item['fid']);
        }
        $file_links[] = array(
          theme('file_link', array(
            'file' => (object) $item,
          )),
          format_size($item['filesize']),
        );
      }
    }
  }
  $files = '';
  if (count($file_links) > 0 && (user_access('show download links') || user_access('show own download links'))) {
    $files .= '<span class="biblio_file_links">';
    
    $file_count = 0;
    foreach ($file_links as $file) {
      $files .= $file[0] . ' (' . $file[1] . ')';
    }
    $files .= '</span>';
  }
  return $files;
}
function theme_biblio_export_links($variables) {
  global $pager_total_items;
  $node = $variables['node'];
  $filter = $variables['node'] == NULL && isset($variables['filter']) ? $variables['filter'] : array();
  $links = array();
  $output = '';
  if (biblio_access('export')) {
    $show_link = variable_get('biblio_lookup_links', array(
      'google' => TRUE,
    ));
    $lookup_links = module_invoke_all('biblio_lookup_link', $node);
    if ($show_link['google'] && !empty($node)) {
      $lookup_links['biblio_google_scholar'] = theme('google_scholar_link', array(
        'node' => $node,
      ));
    }
    $nid = isset($node->nid) ? $node->nid : NULL;
    $export_links = module_invoke_all('biblio_export_link', $nid, $filter);
    $links = array_merge($lookup_links, $export_links);
  }
  if (empty($node) && !empty($links)) {
    $output = t('Export @count results', array(
      '@count' => $pager_total_items[0],
    )) . ': ';
  }
  return $output . theme('links', array(
    'links' => $links,
    'attributes' => array(
      'class' => array(
        'biblio-export-buttons',
      ),
    ),
  ));
}
function theme_google_scholar_link($variables) {
  $node = $variables['node'];
  $query = array();
  $query['btnG'] = 'Search+Scholar';
  $query['as_q'] = '"' . str_replace(array(
    ' ',
    '(',
    ')',
  ), array(
    '+',
  ), $node->title) . '"';
  
  if (isset($node->biblio_contributors[0]['lastname'])) {
    $query['as_sauthors'] = $node->biblio_contributors[0]['lastname'];
  }
  $query['as_occt'] = 'any';
  $query['as_epq'] = '';
  
  $query['as_oq'] = '';
  
  $query['as_eq'] = '';
  
  $query['as_publication'] = '';
  
  $query['as_ylo'] = '';
  
  $query['as_yhi'] = '';
  
  $query['as_sdtAAP'] = 1;
  
  $query['as_sdtp'] = 1;
  
  $attrs = array(
    'title' => t("Click to search Google Scholar for this entry"),
  );
  if (variable_get('biblio_links_target_new_window', NULL)) {
    $attrs = array_merge($attrs, array(
      'target ' => '_blank',
    ));
  }
  return array(
    'title' => t('Google Scholar'),
    'href' => 'http://scholar.google.com/scholar',
    'attributes' => $attrs,
    'query' => $query,
  );
}
function theme_biblio_contributors($variables) {
  $form = $variables['form'];
  $rows = array();
  $headers = array(
    '',
    t('Name'),
    t('Category'),
    t('Weight'),
  );
  drupal_add_tabledrag($form['#id'], 'order', 'sibling', 'rank');
  foreach (element_children($form) as $key) {
    
    $form[$key]['rank']['#attributes']['class'] = array(
      'rank',
    );
    
    $row = array(
      '',
    );
    $row[] = array(
      'data' => drupal_render($form[$key]['name']),
      'class' => array(
        'biblio-contributor',
      ),
    );
    $row[] = array(
      'data' => drupal_render($form[$key]['category']),
      'class' => array(
        'biblio-contributor-category',
      ),
    );
    $row[] = drupal_render($form[$key]['rank']);
    $rows[] = array(
      'data' => $row,
      'class' => array(
        'draggable',
      ),
    );
  }
  $output = theme('table', array(
    'header' => $headers,
    'rows' => $rows,
    'attributes' => array(
      'id' => $form['#id'],
    ),
  ));
  
  return $output;
}
function theme_biblio_alpha_line($variables) {
  $type = $variables['type'];
  $all = '';
  $uri = drupal_parse_url(request_uri());
  $uri['path'] = $_GET['q'];
  
  if (substr($uri['path'], 0, 1) == '/') {
    $uri['path'] = substr($uri['path'], 1);
  }
  $all_uri = $uri;
  $current = '';
  switch ($type) {
    case 'authors':
      $filter = 'author';
      $current = isset($uri['query']['f']['author']) ? $uri['query']['f']['author'] : '';
      unset($all_uri['query']['f']['author']);
      break;
    case 'keywords':
    case 'keyword':
      $filter = 'keyword';
      $current = isset($uri['query']['f']['keyword']) ? $uri['query']['f']['keyword'] : '';
      unset($all_uri['query']['f']['keyword']);
      break;
    case 'author':
      $current = isset($uri['query']['f']['ag']) ? $uri['query']['f']['ag'] : '';
      $filter = 'ag';
      if (!isset($uri['query']['s'])) {
        $uri['query']['s'] = 'author';
      }
      unset($all_uri['query']['f']['ag']);
      break;
    case 'title':
      $current = isset($uri['query']['f']['tg']) ? $uri['query']['f']['tg'] : '';
      $filter = 'tg';
      unset($all_uri['query']['f']['tg']);
      break;
    default:
  }
  $output = '<div class="biblio-alpha-line">';
  
  for ($i = 65; $i <= 90; $i++) {
    if ($i == ord($current)) {
      $output .= '<b>[' . chr($i) . ']</b> ';
    }
    else {
      $uri['query']['f'][$filter] = chr($i);
      $output .= l(chr($i), $uri['path'], $uri) . ' ';
    }
  }
  if ($current) {
    if (empty($all_uri['query']['f'])) {
      unset($all_uri['query']['f']);
    }
    $output .= '  ' . '[' . l(t('Show ALL'), $all_uri['path'], $all_uri) . ']';
  }
  $output .= '</div>';
  return $output;
}
function theme_biblio_admin_author_edit_form($variables) {
  $form = $variables['form'];
  $rows = array();
  $rows[] = array(
    array(
      'data' => drupal_render($form['prefix']),
    ),
    array(
      'data' => drupal_render($form['firstname']),
    ),
    array(
      'data' => drupal_render($form['initials']),
    ),
    array(
      'data' => drupal_render($form['lastname']),
    ),
    array(
      'data' => drupal_render($form['suffix']),
    ),
  );
  $rows[] = array(
    array(
      'data' => drupal_render($form['name']) . drupal_render($form['literal']),
      'colspan' => 5,
    ),
  );
  $rows[] = array(
    array(
      'data' => drupal_render($form['affiliation']),
      'colspan' => 5,
    ),
  );
  $rows[] = array(
    array(
      'data' => drupal_render($form['drupal_uid']),
      'colspan' => 5,
    ),
  );
  $output = theme('table', array(
    'rows' => $rows,
  ));
  $output .= drupal_render($form['merge']);
  $output .= drupal_render($form['link']);
  $output .= drupal_render_children($form);
  return $output;
}
function _biblio_keyword_links($keywords, $base = 'biblio') {
  $uri = drupal_parse_url(request_uri());
  $uri['path'] = variable_get('biblio_base', 'biblio');
  $html = "";
  if (!is_array($keywords)) {
    require_once drupal_get_path('module', 'biblio') . '/includes/biblio.keywords.inc';
    $keywords = biblio_explode_keywords($keywords);
  }
  $sep = variable_get('biblio_keyword_sep', ',');
  foreach ($keywords as $kid => $keyword) {
    $uri['query']['f']['keyword'] = $kid;
    $linked_keywords[] = l(trim($keyword), $base, $uri);
  }
  return implode("{$sep} ", $linked_keywords);
}
function theme_biblio_admin_overview($variables) {
  $name = $variables['name'];
  $type = $variables['type'];
  $description = $variables['description'];
  $instances_missing = $variables['instances missing'];
  $output = check_plain($name);
  $output .= ' <small>' . t('(Machine name: @type)', array(
    '@type' => $type,
  ));
  if ($instances_missing) {
    $output .= ' (<span class="admin-disabled">Missing Field Instances</span>)';
  }
  $output .= '</small>';
  $output .= '<div class="description">' . filter_xss_admin($description) . '</div>';
  return $output;
}