/[drupal]/contributions/modules/biblio/biblio.admin.inc
ViewVC logotype

Diff of /contributions/modules/biblio/biblio.admin.inc

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.36, Tue Feb 24 03:06:14 2009 UTC revision 1.37, Sun Mar 1 01:34:36 2009 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: biblio.admin.inc,v 1.35 2009/02/20 22:18:31 rjerome Exp $  // $Id: biblio.admin.inc,v 1.36 2009/02/24 03:06:14 rjerome Exp $
3  /**  /**
4   *   biblio.admin.inc   *   biblio.admin.inc
5   *   *
# Line 33  function biblio_admin_ahah($form, $eleme Line 33  function biblio_admin_ahah($form, $eleme
33  * Implementation of hook_settings().  * Implementation of hook_settings().
34  */  */
35  function biblio_admin_settings() {  function biblio_admin_settings() {
36    $version = '$Revision: 1.35 $ $Date: 2009/02/20 22:18:31 $';    $version = '$Revision: 1.36 $ $Date: 2009/02/24 03:06:14 $';
37    $version = str_replace('$', '', $version);    $version = str_replace('$', '', $version);
38    $form['biblio_rev'] = array(    $form['biblio_rev'] = array(
39      '#value' => $version,      '#value' => $version,
# Line 119  function biblio_admin_settings() { Line 119  function biblio_admin_settings() {
119      '#title' => t('Citekey'),      '#title' => t('Citekey'),
120      '#description' => t('You can alter citekey related settings here.')      '#description' => t('You can alter citekey related settings here.')
121    );    );
122      $form['citekey']['biblio_display_citation_key'] = array(
123        '#type' => 'checkbox',
124        '#title' => t('Show citation key in results'),
125        '#return_value' => 1,
126        '#default_value' => variable_get('biblio_display_citation_key', 0),
127        '#description' => t('This will output the citekey as the first item in the citation string')
128      );
129    $form['citekey']['biblio_auto_citekey'] = array(    $form['citekey']['biblio_auto_citekey'] = array(
130      '#type' => 'checkbox',      '#type' => 'checkbox',
131      '#title' => t('Auto generate citekeys if not given'),      '#title' => t('Auto generate citekeys if not given'),

Legend:
Removed from v.1.36  
changed lines
  Added in v.1.37

  ViewVC Help
Powered by ViewVC 1.1.2