Skip to content

Commit

Permalink
Fresh install, with several placeholder files
Browse files Browse the repository at this point in the history
  • Loading branch information
Dean Sofer committed Jul 21, 2009
1 parent 70af204 commit 601e268
Show file tree
Hide file tree
Showing 13 changed files with 825 additions and 0 deletions.
7 changes: 7 additions & 0 deletions cart_app_controller.php
@@ -0,0 +1,7 @@
<?php

class CartAppController extends AppController {

}

?>
7 changes: 7 additions & 0 deletions cart_app_model.php
@@ -0,0 +1,7 @@
<?php

class CartAppModel extends AppModel {

}

?>
14 changes: 14 additions & 0 deletions controllers/cart_products_controller.php
@@ -0,0 +1,14 @@
<?php
class CartProductsController extends CartAppController {

var $name = 'CartProducts';
var $components = array('Cart.CartSession');
var $helpers = array('Html', 'Form');
var $scaffold;

function addItem($id = null, $options = null) {
$this->CartSession->addItem($id);
}

}
?>

0 comments on commit 601e268

Please sign in to comment.