restful.php 200 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<?php

class Restful_Controller extends Controller {

	public $restful = true;

	public function get_index()
	{
		return __FUNCTION__;
	}

	public function post_index()
	{
		return __FUNCTION__;
	}

}