FuelPHP Bin
function action_index() { if (\Input::is_ajax()) { //Return ajax data } else { //Show page in browser } } function action_index() { if (in_array(\Input::extension(), array('json', 'xml'))) { //Return ajax data } else { //Show page in browser } }