PHP Classes

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

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

Contents

Class file image Download
<?php

if((int)GlobalCMS::$setting['enable_rss']==0)
{
   
Alert::make('Page not found');
}

$pageName='rss';

$pageData=array();

$headData=GlobalCMS::$setting;

Theme::model('rss');

$pageData['listPost']=listRss();

$pageData['setting']=$headData;

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


?>