<?php 
 
class admin extends A_Controller_Action { 
 
    function index($locator) { 
    //    $this->_load()->response()->view(); For now keep it simple like below 
         
        $content = ' 
<html> 
<body> 
    <h2>Admin Page Action</h2> 
    <p><a href="/examples/login/">home</a> | <a href="login/">log-in</a></p> 
</body> 
</html> 
'; 
        $this->response->setContent($content); 
         
    } 
 
}
 
 |