- 🇦🇹Austria klausi 🇦🇹 Vienna
Drupal 7 is not supported anymore, and Drupal 8+ versions do not use TPL files anymore. Closing this as outdated.
I've the following foo.tpl.php file:
<?php
/**
* @file
*/
?>
<li class="<?php if ($foo) { print 'active'; } ?>"
and after running phpcbf --standard=Drupal,DrupalPractice foo.tpl.php
it's converted into:
<?php
/**
* @file
*/
?>
<li class="<?php if ($foo) {print 'active';} ?>"
The interesting part are removed spaces around PHP print function. Shouldn't be this opposite (as it's currently)?
Closed: outdated
2.0
Coder Review
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.