Ejemplo n.º 1
0
 /**
  * @before _secure, _admin
  */
 public function all()
 {
     $this->seo(array("title" => "Manage FakeReferer URLs", "view" => $this->getLayoutView()));
     $view = $this->getActionView();
     $page = RequestMethods::get("page", 1);
     $limit = RequestMethods::get("limit", 10);
     $count = \Referer::count(array());
     $referers = \Referer::all(array());
     $view->set(array("referers" => $referers, "page" => $page, "limit" => $limit, "count" => $count));
 }