Difference between revisions of "Zen Cart extensibility"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(Created page with "'''Zen Cart extensibility''' is the extensibility principle as it applies to Zen Cart. == Plugins == ... == Observer class == The Observer Class allo...")
 
(See also)
Line 15: Line 15:
 
== See also ==
 
== See also ==
  
* [[Extensibility|extensibility principle]]  
+
* [[Extensibility]]  
 
* [[Zen Cart]]
 
* [[Zen Cart]]

Revision as of 04:48, 12 October 2015

Zen Cart extensibility is the extensibility principle as it applies to Zen Cart.

Plugins

...

Observer class

The Observer Class allows a plugin to listen for for (observe) an event (a notification) and provide additional processing.

This notifier/observer interface also works in the Zen Cart admin panel.

Adding a notifier at specific processing points in the popular (e.g. orders.php, customer.php) admin pages, and providing observer code to insert their customization, may help installation and upgrade processes go much more smoothly.

See also