(function ($) { $(document).ready(function () { lastObj = false; thmrSpanified = false; strs = Drupal.settings.thmrStrings; $('body').addClass("thmr_call").attr("id", "thmr_" + Drupal.settings.page_id); $('[thmr]') .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; $('#themer-toggle :checkbox').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) { spanify(); } } else { document.onclick = null; if (lastObj != false) { $(lastObj).css('outline', 'none'); } } }; $(Drupal.settings.thmr_popup) .appendTo($('body')); $('
'+ strs.themer_info +'
') .appendTo($('body')) .click(themerToggle); $('#themer-popup').resizable(); $('#themer-popup') .draggable({ opacity: .6, handle: $('#themer-popup .topper') }) .prepend(strs.toggle_throbber) ; // close box $('#themer-popup .topper .close').click(function() { themerToggle(); }); }); /** * Known issue: IE does NOT support outline css property. * Solution: use another browser */ 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]') .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].getAttribute('thmr'); // 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.used; // 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() { var thmr_id = $(this).attr('trig'); var thmr_obj = $('[thmr = "' + thmr_id + '"]')[0]; themerDoIt(thmr_obj); }) .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 dd.preprocessors').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(' < ')); $('#themer-popup dd.preprocessors').empty().prepend(vars.preprocessors.join(' + ')); $('#themer-popup dt.preprocessors-type').empty().prepend(strs.preprocessors); $('#themer-popup dd.processors').empty().prepend(vars.processors.join(' + ')); $('#themer-popup dt.processors-type').empty().prepend(strs.processors); var uri = Drupal.settings.devel_themer_uri + '/' + id; if (type == 'func') { // populate the candidates $('#themer-popup dt.candidates-type').empty().prepend(strs.candidate_functions); } else { $('#themer-popup dt.candidates-type').empty().prepend(strs.candidate_files); } // Use drupal ajax to do what we need vars_div_array = $('div.themer-variables'); vars_div = vars_div_array[0]; // Programatically using the drupal ajax things is tricky, so cheat. dummy_link = $('Loading Vars'); $(vars_div).append(dummy_link); Drupal.attachBehaviors(vars_div); dummy_link.click(); thmrRefreshCollapse(); } // stop throbber //$('#themer-popup img.throbber').hide(); } })(jQuery);