How does AOP ( Aspect Oriented Programming ) work in Drupal. I have learned about AOP in terms of using it for logging and security but how does it apply to Druoal?
|
drupal mimics AOP paradigms through hooks, which basically allow developers to weave in bits of code during the flow of execution. you can take a look at the hooks a developer can implement here. as a quick example, if i were developing a new node based module (nodes being the basic data form in drupal), i have instant access to comments and taxonomy with no additional work on my part. the comment and taxonomy modules have the ability to hook into nodes, and provide that added functionality. so in that sense i don't have to account for such features in my program but am able to take advantage of that flexibility. |
||||
|
|
|
Drupal is a "multi-paradigm" framework, and only certain bits of it implement "a kind of" AOP:
Drupal's AOP paradigm might be better visualized as event-driven, and it all happens through Drupal's concept of hooks. For example, when you do the following:
what you are declaring is, in pseudo-code:
When Drupal's core then runs
So while PHP is still a procedural language - and your In this way, Drupal is able to turn its own execution phases into quasi-AOP, by defining
joint points (the For more background on this, and the multi-paradigmatic nature of Drupal especially, try Larry Garfield's excellent blogpost. |
|||
|
|