Skip to content

Instantly share code, notes, and snippets.

@kl177
Last active December 23, 2015 17:39
Show Gist options
  • Select an option

  • Save kl177/6670887 to your computer and use it in GitHub Desktop.

Select an option

Save kl177/6670887 to your computer and use it in GitHub Desktop.
PhpStorm file template definition

PhpStorm file template definition

Block

<?php

class ${Company}_${Module}_Block_${Block} extends Mage_Core_Block_Template {

	public function __construct()
	{
		parent::__construct();
	}
}

Controller

<?php

class ${Company}_${Module}_${Controller}Controller extends Mage_Core_Controller_Front_Action
{
    
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment