PHP Classes

File: contents/themes/simplecolor/controller/404page.php

Recommend this page to a friend!
  Classes of Minh Tien   Noblesse CMS   contents/themes/simplecolor/controller/404page.php   Download  
File: contents/themes/simplecolor/controller/404page.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: 9 years ago
Size: 456 bytes
 

Contents

Class file image Download
<?php

$pageName
='home';

$pageData=array();

$headData=GlobalCMS::$setting;

$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);


// print_r(GlobalCMS::$setting);die();

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

Theme::view('404page',$pageData);

Theme::view('footer');

?>