예제 #1
0
 public function index($urlfriendly = null, $page = 1, $vistas = false)
 {
     $this->plugin->call('index_load');
     $page = (int) is_null($page) ? 1 : $page;
     $C = new configuration();
     $P = new post();
     $L = new link();
     $urlfriendly = rawurlencode($P->sql_escape($urlfriendly));
     //Sanitize
     $codice = $C->getBlogConfiguration();
     $title_for_layout = $codice['blog_name'];
     $links = $L->findAllBy("type", "internal");
     //links para el sidebar
     $single = $urlfriendly ? true : false;
     $this->registry->single = $single;
     if ($urlfriendly) {
         $post = $P->getPost($urlfriendly, 'publish');
         $posts = null;
         if ($P->isNew() === false) {
             $title_for_layout = $post["title"];
             $busqueda = null;
             $pagination = null;
         } else {
             $title_for_layout = "Búsquedas";
             $posts = $P->busqueda($urlfriendly);
             $busqueda = true;
             $pagination = null;
             $single = false;
         }
     } else {
         $total_rows = $P->countPosts();
         $limit = $codice['blog_posts_per_page'];
         $offset = ($page - 1) * $limit;
         $limitQuery = $offset . "," . $limit;
         $targetpage = $this->path . 'index/page/';
         $busqueda = null;
         $pagination = $this->pagination->init($total_rows, $page, $limit, $targetpage);
         $post = null;
         $posts = $P->getPosts("publish", $limitQuery);
     }
     //Creamos los tags <meta> que van dentro del layout.
     $includes = array();
     $includes['charset'] = $this->html->charsetTag("UTF-8");
     $includes['rssFeed'] = $this->html->includeRSS();
     if ($page > 1) {
         $includes['canonical'] = $this->html->includeCanonical("/index/page/{$page}");
     } else {
         if ($urlfriendly) {
             $includes['canonical'] = $this->html->includeCanonical($urlfriendly);
         } else {
             $includes['canonical'] = $this->html->includeCanonical();
         }
     }
     $this->registry->includes = $includes;
     $this->plugin->call('index_includes');
     //Convertimos de Array a String, para que pueda ser mostrado en la vista.
     $includes = null;
     foreach ($this->registry->includes as $include) {
         $includes .= $include;
     }
     $this->registry->post = $post;
     $this->registry->posts = $posts;
     $this->plugin->call("index_post_content");
     $this->view->setLayout("codice");
     $this->view->codice = $codice;
     $this->view->urlfriendly = $urlfriendly;
     $this->view->pagination = $pagination;
     $this->view->busqueda = $busqueda;
     $this->view->includes = $includes;
     $this->view->links = $links;
     $this->view->single = $single;
     $this->view->posts = $this->registry->posts;
     $this->view->post = $this->registry->post;
     $this->view->cookie = array('author' => $this->cookie->check('author') ? $this->cookie->author : '', 'email' => $this->cookie->check('email') ? $this->cookie->email : '', 'url' => $this->cookie->check('url') ? $this->cookie->url : '');
     $this->title_for_layout($title_for_layout);
     $this->render("index");
 }