Skip to content

Instantly share code, notes, and snippets.

@gumacahin
Created July 24, 2012 10:50
Show Gist options
  • Save gumacahin/3169362 to your computer and use it in GitHub Desktop.
Save gumacahin/3169362 to your computer and use it in GitHub Desktop.
<?php
// car controller
class Car_CarController extends Core_Controller_Action_Standard
{
public function init()
{
}
public function editAction()
{
}
public function deleteAction()
{
}
}
<?php
// index controller
class Car_IndexController extends Core_Controller_Action_Standard
{
public function init()
{
}
public function indexAction()
{
}
public function createAction()
{
}
public function browseAction()
{
}
public function manageAction()
{
}
}
<?php
// profile controller
class Car_ProfileController extends Core_Controller_Action_Standard
{
public function init()
{
}
public function indexAction()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment