<?php
/**
* Yourcompany.com
*
* PHP Version 5
*
* @category Namespace
* @package Namespace_Module
* @author Your Name <your.name@yourcompany.com>
* @copyright 2012 yourcompany.com
* @license http://www.yourcompany.com/license.txt Your license
* @link N/A
*/
/**
* A description of the controller
*
* @category Namespace
* @package Namespace_Module
* @author Your Name <your.name@yourcompany.com>
* @license http://www.yourcompany.com/license.txt Your license
* @link N/A
*/
class Namespace_Module_SomeController extends Mage_Core_Controller_Front_Action
{
/**
* Index action
*
* @return void
*/
public function indexAction()
{
$this->loadLayout();
$this->renderLayout();
}
}
Posted by Mike Whitby to Magento (2012-06-08 09:35)