- 🇦🇹Austria klausi 🇦🇹 Vienna
Drupal 7 is not supported anymore, and Drupal 8+ versions do not use TPL files anymore. Closing this as outdated.
The following code:
<?php
/**
* @file
*/
if(!empty($arr_topics[0])) print '<li><a href="#">' . $arr_topics[0] . '</a></li>'; ?>
<?php if(!empty($arr_topics[1])) print '<li><a href="#">' . $arr_topics[1] . '</a></li>'; ?>
is fixed into:
<?php
/**
* @file
*/
if(!empty($arr_topics[0])) {print '<li><a href="#">' . $arr_topics[0] . '</a></li>';} ?>
<?php if(!empty($arr_topics[1])) {print '<li><a href="#">' . $arr_topics[1] . '</a></li>';} ?>
Test command: phpcbf --standard=Drupal foo.tpl.php
It works when the filename is foo.module
Closed: outdated
2.0
Coder Sniffer
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Drupal 7 is not supported anymore, and Drupal 8+ versions do not use TPL files anymore. Closing this as outdated.