Skip to content

Instantly share code, notes, and snippets.

@Navds
Created November 29, 2018 06:20
Show Gist options
  • Save Navds/7dba5584dae59f3bcd33b4b838f0cb18 to your computer and use it in GitHub Desktop.
Save Navds/7dba5584dae59f3bcd33b4b838f0cb18 to your computer and use it in GitHub Desktop.
Magento extension development best practice

Source: https://magento.stackexchange.com/questions/8344/magento-1-how-to-write-a-custom-extension

  • Always develop with error_reporting on.
  • Always develop with isDeveloperMode set to true. Just add SetEnv MAGE_IS_DEVELOPER_MODE 1 to your httpd.conf file (or corresponding file for Nginx or something else)
  • If the extension is linked to a core functionality add the dependency in the declaration file <Mage_Catalog />
  • If the module is for community use, use community as codepool to give the developers the chance to override some classes without modifying the code directly
  • Put your frontend design files in app/design/frontend/base/default to make them available for all themes.
  • Put your admin design files in app/design/adminhtml/default/default and do not change the admin theme. I may want to change it in one of my modules.
  • Prefix your layout file names and template folder name with the company name to make it easier to isolate them. easylife_articles.xml and app/design/.../easylife_articles
  • Put your static resources (JavaScript, CSS, and images) in a similar folder as the template files easylife_articles/images/doh.png
  • Attach a simple text file with how to uninstall the extension: What files need to be removed, what tables need to be dropped, what config settings need to be removed from core_config_data table.
  • Do not write queries directly in models, blocks or helpers, use a resource model for that.
  • Do not write queries using the table names directly Select * from sales_flat_order where .... Use a Zend_Select and transform the table names using ->getTable('sales/order').
  • Use the base url to include js files in template. Wrong <script type="text/javascript" src="../js/some.js"></script>. Right <script type="text/javascript" src=""></script>
  • Do not rewrite classes unless is necessary. Use observers and if it's not possible to use helper methods that receive as parameter and instance of a class that you wanted to override. Wrong: Override Mage_Catalog_Model_Product to add the method getProductArticles(). Right. In your helper add getProductArticles(Mage_Catalog_Model_Product $product)
  • If you override classes put a list of them in a readme.txt file
  • Use the default admin path for the admin section of your module. Wrong admin URL articles/adminhtml_articles/index. Right admin URL admin/articles/index
  • Add ACL for your admin sections. I may want to restrict access to some of the administrators.
  • Do not add another JavaScript framework (jQuery, MooTools, etc.) if it's not necessary. Write you code in the prototype.
  • Make you template HTML W3C valid (this is for OCD developers like myself).
  • Do not put images in the media folder. Use skin. The media folder usually is not versioned and this makes it harder to move the website to different environments.
  • Test your extension with flat catalog on and off. In order not to double the development time, use Chaos Monkey.
  • Test your extension with cache on and cache off.
  • Avoid using uppercase letter in the module and class names. If not properly tested this may cause issues on different OS. This is more a recommendation, not a 'must'.
  • Dispatch events in your code to make it easier for developers to alter the functionality.
  • Follow the same coding standards that Magento uses and comment your code.
  • Do not use PHP short tags (doSomething() ?>). Use full tags (doSomething()?>). Also don't use short echo tags, yet. (). Use ()
  • Translate your texts using $this->__ and add the locale translation file with your texts (app/local/en_US/Easylife_Articles.csv) at least for en_US language. Not all websites are built in English and the identification of texts to translate is time consuming.
  • If you sell an extension offer at least basic support. Or at least answer the support e-mails you receive.
  • Do not make constant calls to your servers through your extension for licence validation. Once, at installation is more than enough (I don't like this approach either, but it's better than to make calls all the time). (Inspired by this question)
  • Develop with the log activated and from time to time take a look at the var/log/system.log file. The errors listed here are not shown even with developer mode on. If there is at least one error you end up with a large log file after a few months of running the extension.
  • If your extension affects the checkout process or the orders in some way, make sure it works with multi-shipping, or if it shouldn't work with multi-shipping, make sure it doesn't affect it.
  • Do not replace the default Admin Notification bar (or feed URL). If I'm interested in what you have to offer I will subscribe to your newsletter. Let me see what Magento has to say. It's more important to me.
  • If you encrypt your code files with Ioncube (or something else)...well...I just hate you and I hope your business goes bankrupt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment