Table of Contents
When your backend request driver is accessed from the frontend Recite CMS web site, the
request is sent through the run()
method of the driver.
When your driver extends from the Module_Backend_Driver_Abstract
class, this method is automatically defined for you and makes it relatively easy to create a
number of different actions.
Typically you won't need to define run()
yourself since the
built-in one is highly effective (you'll see how in the next chapter). You can skip the rest
of this chapter unless you need to define your own run()