Created
April 3, 2013 22:39
-
-
Save amacgregor/5306110 to your computer and use it in GitHub Desktop.
ItemController first example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Mdg_Giftregistry_ItemController extends Mage_Core_Controller_Front_Action | |
{ | |
public function addAction() | |
{ | |
return $this; | |
} | |
public function editAction() | |
{ | |
return $this; | |
} | |
public function deleteAction() | |
{ | |
return $this; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment