PhpStorm and xdebug in the browser - the missing instruction I spent the usual two lifetimes getting xdebug working (again) after upgrading to a new major version of phpStorm. Type: Tip Tags: php PhpStorm xdebug
Omitting Drupal's admin overlay from selectors I had an issue recently, where I was using a selector to add menu tabs to the edge of the content area. Getting them to appear wasn't the issue. Getting them NOT to appear on admin overlays was. Type: Tip Tags: D9 D8 Drupal jQuery theming
What a difference a space makes Sometimes you need your selector to look for two classes...but what do you do when both classes are for the same element? Type: Tip Tags: jQuery
Drupal Overrides - Comment Approval Page The standard Drupal comment approval admin page has always been an annoyance to me. The main reason I will toss a comment is that it's spam. Type: Tip Tags: D7 Drupal theming
Invoking the calling class in a static inherited environment In PHP, if you have a number of static classes, how do you make sure the called class ends up calling a method back in the calling class? Type: Tip Tags: OOP php