'index', 'y1' => 'y1Action' ); private static $allowed_actions = array( 'index', 'y1Action', ); public function index() { echo self::OK_MSG; } public function y1Action() { echo self::OK_MSG; } }