Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
docs:programming:php:cakephp:cakephp_notes [2007/04/06 00:27] – billh | docs:programming:php:cakephp:cakephp_notes [2008/08/03 00:25] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== CakePHP ====== | ||
+ | ===== Usage (after install) ===== | ||
+ | The examples below are from a working cakeblog tutorial: http:// | ||
+ | ==== Create Models for Database Tables ==== | ||
+ | * singlar: post.php in app/models/ for database table posts | ||
+ | * example:< | ||
+ | <?php | ||
+ | class Post extends AppModel | ||
+ | { | ||
+ | var $name = ' | ||
+ | |||
+ | var $validate = array( | ||
+ | |||
+ | ' | ||
+ | ' | ||
+ | |||
+ | ); | ||
+ | } | ||
+ | |||
+ | ?> | ||
+ | </ | ||
+ | |||
+ | ==== Create Controllers for Models ==== | ||
+ | * plural: posts_controller.php in app/ | ||
+ | * functions created here are locations the user can visit | ||
+ | * example:< | ||
+ | <?php | ||
+ | |||
+ | class PostsController extends AppController | ||
+ | { | ||
+ | var $name = ' | ||
+ | |||
+ | function index() | ||
+ | { | ||
+ | $this-> | ||
+ | } | ||
+ | |||
+ | function view($id = null) | ||
+ | { | ||
+ | $this-> | ||
+ | $this-> | ||
+ | } | ||
+ | |||
+ | function add() | ||
+ | { | ||
+ | if(!empty($this-> | ||
+ | { | ||
+ | if($this-> | ||
+ | { | ||
+ | $this-> | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | |||
+ | function delete($id) | ||
+ | { | ||
+ | $this-> | ||
+ | $this-> | ||
+ | } | ||
+ | |||
+ | function edit($id = null) | ||
+ | { | ||
+ | if(empty($this-> | ||
+ | { | ||
+ | $this-> | ||
+ | $this-> | ||
+ | } | ||
+ | else | ||
+ | { | ||
+ | if($this-> | ||
+ | { | ||
+ | $this-> | ||
+ | } | ||
+ | } | ||
+ | |||
+ | } | ||
+ | } | ||
+ | |||
+ | ?> | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | ==== Create Views ==== | ||
+ | * create a folder in app/views as a plural of model: app/ | ||
+ | * create views for each function in posts_controller.php | ||
+ | * files have exact name as function, with a .thtml extension | ||
+ | * examples:< | ||
+ | // add.thtml | ||
+ | < | ||
+ | <form method=" | ||
+ | <p> | ||
+ | Title: | ||
+ | <?php echo $html-> | ||
+ | <?php echo $html-> | ||
+ | </p> | ||
+ | <p> | ||
+ | Body: | ||
+ | <?php echo $html-> | ||
+ | <?php echo $html-> | ||
+ | </p> | ||
+ | <p> | ||
+ | <?php echo $html-> | ||
+ | </p> | ||
+ | </ | ||
+ | |||
+ | // edit.thtml | ||
+ | < | ||
+ | <form method=" | ||
+ | <?php echo $html-> | ||
+ | <p> | ||
+ | Title: | ||
+ | <?php echo $html-> | ||
+ | <?php echo $html-> | ||
+ | </p> | ||
+ | <p> | ||
+ | Body: | ||
+ | <?php echo $html-> | ||
+ | <?php echo $html-> | ||
+ | </p> | ||
+ | <p> | ||
+ | <?php echo $html-> | ||
+ | </p> | ||
+ | </ | ||
+ | |||
+ | // index.thtml | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | <tr> | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | </tr> | ||
+ | |||
+ | <?php foreach ($posts as $post): ?> | ||
+ | <tr> | ||
+ | < | ||
+ | <?php echo $html-> | ||
+ | ' | ||
+ | "/ | ||
+ | null, | ||
+ | ' | ||
+ | )?> | ||
+ | <?php echo $html-> | ||
+ | </ | ||
+ | <td> | ||
+ | <?php echo $html-> | ||
+ | |||
+ | </td> | ||
+ | < | ||
+ | </tr> | ||
+ | <?php endforeach; ?> | ||
+ | |||
+ | </ | ||
+ | |||
+ | // view.thtml | ||
+ | < | ||
+ | |||
+ | < | ||
+ | |||
+ | < | ||
+ | |||
+ | </ | ||
+ | |||
+ | ===== Static Views at the Root Level (Pages Controller) ===== | ||
+ | * http:// | ||
+ | |||
+ | |||
+ | ===== Installation (my custom install) ===== | ||
+ | * download and extract the most current release: http:// | ||
+ | * create a directory " | ||
+ | * move every file and folder except " | ||
+ | * move " | ||
+ | * modify newApp/ | ||
+ | * after " | ||
+ | * modify newApp/ | ||
+ | * after " | ||
+ | * copy newApp/ | ||
+ | * modify database.php | ||
+ | * in the default section, set your appropriate database connection parameters | ||
+ | * for the initial setup, a tutorial for creating a blog was followed, and a basic table structure SQL statement was given | ||
+ | * modify newApp/ | ||
+ | * uncomment and modify the line: define(' | ||
+ | * comment out the default definition for ROOT | ||
+ | * uncomment and modify the line: define(' | ||
+ | * comment out the default definition for APP_DIR | ||
+ | * uncomment and modify the line: define(' | ||
+ | * comment out the default definition for CAKE_CORE_INCLUDE_PATH | ||
+ | * verify that newApp/tmp is writable by your web server | ||
+ | ==== Routes ==== | ||
+ | * make the default index page for the application start at a different location | ||
+ | * edit config -> routes.php< | ||
+ | ... | ||
+ | |||
+ | // | ||
+ | $Route-> | ||
+ | |||
+ | ... | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | ===== External Links ===== | ||
+ | * Home Page - http:// | ||
+ | * Manual - http:// | ||
+ | * http:// | ||
+ | * http:// |