[ Index ]

PHP Cross Reference of Drupal 6 (gatewave)

title

Body

[close]

/sites/all/modules/xmlsitemap/ -> xmlsitemap.js (source)

   1  // $Id: xmlsitemap.js,v 1.1.2.2 2010/01/26 19:38:27 davereid Exp $
   2  
   3  (function ($) {
   4  
   5  Drupal.verticalTabs = Drupal.verticalTabs || {};
   6  
   7  Drupal.verticalTabs.xmlsitemap = function() {
   8    var vals = [];
   9  
  10    // Inclusion select field.
  11    var status = $('#edit-xmlsitemap-status option:selected').text();
  12    vals.push(Drupal.t('Inclusion: @value', { '@value': status }));
  13  
  14    // Priority select field.
  15    var priority = $('#edit-xmlsitemap-priority option:selected').text();
  16    vals.push(Drupal.t('Priority: @value', { '@value': priority }));
  17  
  18    return vals.join('<br />');
  19  };
  20  
  21  })(jQuery);


Generated: Thu Mar 24 11:18:33 2011 Cross-referenced by PHPXref 0.7