Pages class
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");
?>