Skip to content
This repository has been archived by the owner on Mar 12, 2024. It is now read-only.

Commit

Permalink
Creating Books Controller
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasramy committed Jun 17, 2012
1 parent 3e6eb83 commit ba88078
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
18 changes: 18 additions & 0 deletions app/controllers/BooksController.php
@@ -0,0 +1,18 @@
<?php
/**
* Lithium: the most rad php framework
*
* @copyright Copyright 2012, Union of RAD (http://union-of-rad.org)
* @license http://opensource.org/licenses/bsd-license.php The BSD License
*/

namespace app\controllers;

class BooksController extends \lithium\action\Controller {

public function index() {
return $this->render(array('layout' => false));
}
}

?>
1 change: 1 addition & 0 deletions app/views/books/index.html.php
@@ -0,0 +1 @@
Hello World!

0 comments on commit ba88078

Please sign in to comment.