Skip to content

Instantly share code, notes, and snippets.

@taishi41228
Last active August 16, 2016 14:02
Show Gist options
  • Save taishi41228/eb01b47015660714c90a32709ce93e99 to your computer and use it in GitHub Desktop.
Save taishi41228/eb01b47015660714c90a32709ce93e99 to your computer and use it in GitHub Desktop.
Fuel
<?php
class Controller_Index extends Controller
{
public function action_index()
{
return Response::forge(View::forge('index'));
}
public function action_entry()
{
return Response::forge(View::forge('entry'));
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment