Pages class

Posted by Lachhekumar Nadar on 2009-07-02 23:57:08

Page class is a CMS class that is managed by the koolphp automatically. The data for the page class is entered from the backkoffice > page manager

There is only 1 function get() , this will retrive the content of the record which are refreenced by the file name, Example is given below

PHP Code
<?

    $content 
"";
    
$pg = new pages();
    
$maincontent    $pg->get("index");

?>