Tuesday, 24 November 2015

Drupal Module - Blocks By Page Path

In Drupal,
Sometimes we would like to know the blocks which are assigned (enabled / disabled) to a particular page. This module helps us to get the block(s) information by providing the page path.
This module helps us to find the blocks which are assigned through
1. "admin/structure/block" section
2. Context module
Module Download Link Click Here

Wednesday, 18 November 2015

Syslog is not recommended in Pantheon + Drupal

Here is the statement from Pantheon with Drupal.

On Pantheon, you can technically write to syslog, but there is no mechanism for reading it. Disable syslog and enable dblog instead.

PHP Codesniffer - Ignore warning errors

 Use below command to ignore warnings while generating report. phpcs -n /path_to_directory/ The above command will result only errors and ig...