Coder doesn't understand PHP short tags in template file.

Created on 21 December 2015, over 9 years ago
Updated 11 January 2025, 3 months ago

Given the following code:

<script>
  var minAge = <?= variable_get('foo-min', '13'); // @fixme: Move into Drupal JS settings. ?>
  var maxAge = <?= variable_get('foo-max', '13'); // @fixme: Move into Drupal JS settings. ?>
</script>

The Coder "fixes" it into:

<script>
// @fixme: Move into Drupal JS settings.   var minAge = <?= variable_get('foo-min', '13');
?>
// @fixme: Move into Drupal JS settings.   var maxAge = <?= variable_get('foo-max', '13');
?>
</script>

which is wrong.

Testing command: phpcbf --standard=Drupal foo.tpl.php

I assuming Coder doesn't understand the syntax used here correctly.

🐛 Bug report
Status

Closed: outdated

Version

2.0

Component

Coder Sniffer

Created by

🇬🇧United Kingdom kenorb

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • 🇦🇹Austria klausi 🇦🇹 Vienna

    Drupal 7 is not supported anymore, and Drupal 8+ versions do not use TPL files anymore. Closing this as outdated.

Production build 0.71.5 2024