Skip to content

Famework_View_Frame_Controller

LaCodon edited this page Oct 9, 2016 · 1 revision

namespace Famework\View

This is an interface:

interface Famework_View_Frame_Controller {

    public function renderTop();

    public function renderBottom();
}
Parameter Purpose
renderTop() This method will get called before the view script
renderBottom() This will method will get called after the view script

Implement this interface to add reappearing content to your website.

Call setFrameController() in your Controller's or Action's init method.

Clone this wiki locally