Exemplo n.º 1
0
 /**
  * Runs after the action. Executes the layout/main view file.
  * @return void
  */
 public function postAction()
 {
     if ($this->auto_render_layout) {
         $EzLink = new Model_EzLink();
         $this->page_data['count_urls'] = $EzLink->countUrls();
         $this->page_data['count_clicks'] = $EzLink->countClicks();
         $this->response->view('layout/main', $this->page_data);
     }
 }