// $Id$ if (Drupal.jsEnabled) { $(document).ready(function () { lastObj = false; thmrSpanified = false; strs = Drupal.settings.thmrStrings; $('span.thmr_call') .hover( function () { if (themerEnabled && this.parentNode.nodeName != 'BODY' && $(this).attr('thmr_curr') != 1) { $(this).css('outline', 'red solid 1px'); } }, function () { if (themerEnabled && $(this).attr('thmr_curr') != 1) { $(this).css('outline', 'none'); } } ); var themerEnabled = 0; var themerToggle = function () { themerEnabled = 1 - themerEnabled; $('input', this).attr('checked', themerEnabled ? 'checked' : ''); $('#themer-popup').css('display', themerEnabled ? 'block' : 'none'); if (themerEnabled) { document.onclick = themerEvent; if (lastObj != false) { $(lastObj).css('outline', '3px solid #999'); } if (!thmrSpanified) { // turn on the throbber $('#themer-toggle img.throbber').show(); window.setTimeout('spanify()', 100); } } else { document.onclick = null; if (lastObj != false) { $(lastObj).css('outline', 'none'); } } }; $(Drupal.settings.thmr_popup) .appendTo($('body')); $('
'+ strs.themer_info + strs.toggle_throbber +'
') .appendTo($('body')) .click(themerToggle); $('#themer-popup') .draggable({ opacity: .6, handle: $('#themer-popup .topper') }) .prepend(strs.toggle_throbber) ; // close box $('#themer-popup .topper .close').click(function() { themerToggle(); }); }); } function themerHilight(obj) { // hilight the current object (and un-highlight the last) if (lastObj != false) { $(lastObj).css('outline', 'none').attr('thmr_curr', 0); } $(obj).css('outline', '#999 solid 3px').attr('thmr_curr', 1); lastObj = obj; } function themerDoIt(obj) { if (thmrInPop(obj)) { return true; } // start throbber $('#themer-popup img.throbber').show(); var objs = thmrFindParents(obj); if (objs.length) { themerHilight(objs[0]); thmrRebuildPopup(objs); } return false; } function spanify() { $('span.thmr_call') .each(function () { // make spans around block elements into block elements themselves var kids = $(this).children(); for(i=0;i 0) { do { if (blocks[i] === obj.tagName) { return true; } } while (i--); } } return false; } function thmrRefreshCollapse() { $('#themer-popup .devel-obj-output dt').each(function() { $(this).toggle(function() { $(this).parent().children('dd').show(); }, function() { $(this).parent().children('dd').hide(); }); }); } /** * Rebuild the popup * * @param objs * The array of the current object and its parents. Current object is first element of the array */ function thmrRebuildPopup(objs) { // rebuild the popup box var id = objs[0].id; // vars is the settings array element for this theme item var vars = Drupal.settings[id]; // strs is the translatable strings var strs = Drupal.settings.thmrStrings; var type = vars.type; var key = vars.name; // clear out the initial "click on any element" starter text $('#themer-popup div.starter').empty(); if (type == 'func') { // populate the function name $('#themer-popup dd.key').empty().prepend(''+ key +'()'); $('#themer-popup dt.key-type').empty().prepend(strs.function_called); } else { // populate the template name $('#themer-popup dd.key').empty().prepend(key); $('#themer-popup dt.key-type').empty().prepend(strs.template_called); } // parents var parents = ''; parents = strs.parents +' '; for(i=1;i'+ pvars.name +' '; } parents += ''; // stick the parents spans in the #parents div $('#themer-popup #parents').empty().prepend(parents); $('#themer-popup span.parent').click(function() { // make them clickable $('#'+ $(this).attr('trig')).each(function() { themerDoIt(this) }); }) .hover(function() { // make them highlight their element on mouseover $('#'+ $(this).attr('trig')).trigger('mouseover'); }, function() { // and unhilight on mouseout $('#'+ $(this).attr('trig')).trigger('mouseout'); }); if (vars == undefined) { // if there's no item in the settings array for this element $('#themer-popup dd.candidates').empty(); $('#themer-popup div.attributes').empty(); $('#themer-popup div.used').empty(); $('#themer-popup div.duration').empty(); } else { $('#themer-popup div.duration').empty().prepend('' + strs.duration + '' + vars.duration + ' ms'); $('#themer-popup dd.candidates').empty().prepend(vars.candidates.join(' < ')); if (type == 'func') { if (vars.candidates != undefined && vars.candidates.length != 0) { // populate the candidates $('#themer-popup dt.candidates-type').empty().prepend(strs.candidate_functions); } $('#themer-popup div.attributes').empty().prepend('

'+ strs.function_arguments + '

' + vars.args); $('#themer-popup div.used').empty(); } else { $('#themer-popup dt.candidates-type').empty().prepend(strs.candidate_files); $('#themer-popup div.attributes').empty().prepend('

'+ strs.template_variables + '

' + vars.args); $('#themer-popup div.used').empty().prepend('
'+ strs.file_used +'
'+ vars.used +'
'); } thmrRefreshCollapse(); } // stop throbber $('#themer-popup img.throbber').hide(); }