PHP Classes

File: contents/themes/simplecolor/controller/category.php

Recommend this page to a friend!
  Classes of Minh Tien   Noblesse CMS   contents/themes/simplecolor/controller/category.php   Download  
File: contents/themes/simplecolor/controller/category.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Noblesse CMS
Content management system with custom plugins
Author: By
Last change:
Date: 8 years ago
Size: 638 bytes
 

Contents

Class file image Download
<?php

if(!$match=Uri::match('category-(\d+)\/?'))
{
   
Redirect::to('404page');
   
// Alert::make('Page not found');
}

$pageName='category';

$pageData=array();

$pageData['content_top']=Render::content_top($pageName);

$pageData['content_left']=Render::content_left($pageName);

$pageData['content_right']=Render::content_right($pageName);

$pageData['content_bottom']=Render::content_bottom($pageName);

Theme::model('category');

$headData=GlobalCMS::$setting;

$pageData['newPost']=searchResult($match[1]);

$pageData['listPage']=listPage();

Theme::view('head',$headData);

Theme::view($pageName,$pageData);

Theme::view('footer');

?>