Is the separation of program logic and presentation layer going too far?
- by Timwi
In a Drupal programming guide, I noticed this sentence:
The theme hook receives the total number of votes and the number of votes for just that item, but the template wants to display a percentage. That kind of work shouldn't be done in a template; instead, the math is performed here.
The math necessary to calculate a percentage from a total…