Difference between revisions of "Zen Cart extensibility"
Karl Jones (Talk | contribs) (→Require login for EZ page) |
Karl Jones (Talk | contribs) (→Require login for EZ page) |
||
Line 30: | Line 30: | ||
<code> | <code> | ||
if ($ezpage_id == 55) { | if ($ezpage_id == 55) { | ||
+ | |||
if (!$_SESSION['customer_id']) { | if (!$_SESSION['customer_id']) { | ||
+ | |||
$_SESSION['navigation']->set_snapshot(); | $_SESSION['navigation']->set_snapshot(); | ||
+ | |||
zen_redirect(zen_href_link(FILENAME_LOGIN, '', 'SSL')); | zen_redirect(zen_href_link(FILENAME_LOGIN, '', 'SSL')); | ||
+ | |||
} | } | ||
+ | |||
} | } | ||
</code> | </code> |
Revision as of 04:43, 12 October 2015
Zen Cart extensibility is the extensibility principle as it applies to Zen Cart.
See also Learning Zen Cart (1).
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.
Require login for EZ page
File:
/includes/modules/pages/page/header_php.php
Around line 23:
if ($ezpage_id == 0) zen_redirect(zen_href_link(FILENAME_DEFAULT));
Right below that, insert the following code, substituting '55' with the number of the page to protect:
if ($ezpage_id == 55) {
if (!$_SESSION['customer_id']) {
$_SESSION['navigation']->set_snapshot();
zen_redirect(zen_href_link(FILENAME_LOGIN, , 'SSL'));
}
}