Closed (works as designed)
Project:
Object Oriented Drupal
Version:
6.x-1.x-dev
Component:
Miscellaneous
Priority:
Minor
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
8 Sep 2008 at 14:21 UTC
Updated:
17 Nov 2008 at 20:35 UTC
Comments
Comment #1
brendoncrawford commentedPlease don't assume that everyone shares your same opinions. Also, please do not waste module authors time with non-support issues. This is an issue tracker, not a soapbox. If you want to rant, do it on your blog. Thanks.
Also, here is the answer why: Because I want to.
Comment #2
robloachRight now this module implements every hook as a static function, which isn't really object oriented. Here you're just namespacing hooks in static classes. What if every hook was instead of being statically implemented, it was overridden to be something when you wanted to implement that hook.....
Comment #3
brendoncrawford commentedRob,
You can also extend/inherit classes, so they don't just operate solely as static containers.