Skip to content

Instantly share code, notes, and snippets.

@amacgregor
Created April 3, 2013 22:39
Show Gist options
  • Save amacgregor/5306110 to your computer and use it in GitHub Desktop.
Save amacgregor/5306110 to your computer and use it in GitHub Desktop.
ItemController first example
<?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