Err: Method 'action_index' of 'news_controller' is not exists!

178.      private $_v;
179.      private $_data = array();
180. 
181.      public function init(){}
182.      public function __construct(){$this->init();}
183.      public function __get($name){return $this->_data[$name];}
184.      public function __set($name$value){$this->_data[$name] = $value;}
185.      
186.      public function display($tpl_name)
187.      {
188.          if(!$this->_v$this->_v = new View(VIEW_DIRAPP_DIR.DS.'protected'.DS.'cache'.DS.'template');
1.  <?php
2.  define('APP_DIR'realpath('./'));
3.  defined('DS') or define('DS'DIRECTORY_SEPARATOR);
4.  define('INCL_DIR'APP_DIR.DS.'protected'.DS.'include');
5.  require(INCL_DIR.DS.'core.php');