document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php if ( ! defined(\'BASEPATH\')) exit(\'No direct script access allowed\');
  2.  
  3. class Test_page extends CI_Controller {
  4.    
  5.     public function __construct() {
  6.         parent::__construct();
  7.  
  8.         $this->omap->type(\'pages\');
  9.         $this->omap->title(\'Welcome\');
  10.         $this->omap->label(\'dasbor\');
  11.     }
  12.    
  13.     public function index() {
  14.         $data[\'source_name\'] = \'Hallo Words!\';
  15.         $this->omap->display(\'my_pages\', $data);
  16.     }
  17. }
');