• We are available for any Development work:
  • Email us at: programmer_heart@yahoo.com

How to Create a custom module in Magento

Part of customizing Magento is, of course, creating custom Modules. These allow you to inject functionality anywhere, whether in a “static” block fashion that’s more than static, or a shipping/payment module, or large module to do something as large as integrating a 3rd party system (or multiple systems).

There are many things custom Modules can do, from editing your Database, to handling module upgrades to overriding classes (Blocks, Controllers, Models) … and more!

This blog post is a very basic start on creating your own custom module and hooking it up to a phtml file in your own theme.

I will be creating a Fido Example module. ‘Fido’ is the namespace (vs Mage), ‘Example’ is the module (vs Catalog, Page, Core, Shipping etc).
Step One

Inform Magento that you have a custom module.

app/etc/modules/Fido_All.xml Notice the _All in the xml file name. I can declare all of my modules here. (Say I have more than Example, I can also declare my Example2 module in this file).

[code]
<?xml version="1.0"?><config>

<modules>

<Fido_Example>

<active>true</active>

<codePool>local</codePool>

</Fido_Example>

</modules>

</config>

[/code]

I have informed Magento that I have an active module (you can turn it off from here by setting ‘active’ to false. I have also informed Magento that it is located in the ‘local’ code pool.
Step Two

Configure your new module. Note the file locations (need to create directories as necessary).

[code]

app/code/local/Fido/Example/etc/config.xml
<?xml version="1.0"?><config>

<modules>

<Fido_Example>

<version>0.1.0</version>

</Fido_Example>

</modules>

<global>

<blocks>

<fido_example>

<class>Fido_Example_Block</class>

</fido_example>

</blocks>

</global>

</config>

[/code]

I have informed Magento of my module version (it’s an arbitrary version). Version matters when you set up your module to be update-able. (A newer version will inform Magento to run the update files if you have them).

I have also informed Magento that my module contains  block files which are found in fido/example/block. My class name will have “Fido_Example_Block”. If you want to see the many possibilities of stuff that goes in here, check out Mage config files (such as Catalog/etc/config.xml). You’ll also see other xml files in there. Those explanations are for another post.
Step Three

Here is my block code. It doesn’t really do anything, but shows some functionality.

appcodelocalFidoExampleBlockView.php
[code]
<?php/**

* Example View block

*

* @codepool   Local

* @category   Fido

* @package    Fido_Example

* @module     Example

*/

class Fido_Example_Block_View extends Mage_Core_Block_Template

{

private $message;

private $att;

protected function createMessage($msg) {

$this->message = $msg;

}

public function receiveMessage() {

if($this->message != ”) {

return $this->message;

} else {

$this->createMessage(‘Hello World’);

return $this->message;

}

}

protected function _toHtml() {

$html = parent::_toHtml();

if($this->att = $this->getMyCustom() && $this->getMyCustom() != ”) {

$html .= ‘<br />’.$this->att;

} else {

$html .= ‘<br />No Custom Attribute Found’;

}

return $html;

}

}
[/code]

The function receiveMessage() just returns “Hello World”

The function _toHtml() is responsible for outputting the template associated with the block. Make sure you run paret::_toHtml and return it as part of any other items returned in that function!
Step Four

Here we create our template (phtml) file.

appdesignfrontenddefaultfidotemplateexampleview.phtml
[code]
<?php/**

* Fido view template

*

* @see Fido_Example_Block_View

*

*/

?>
[/codesyntax]
<span><strong>This is the output of the fido example:</strong></span><br />
[codesyntax lang="php"]

<?php

echo $this->receiveMessage();

?>
[/code]

This just outputs some HTML and also runs the receiveMessage() function from our block (view.php).

Two caveats here. By placing our view.phtml file in it’s location, we have created our own theme. You must make sure that

a) Magento knows about your theme (Admin->System->Design)

and

b) If you use the this block in a CMS page, you set the CMS page to use your theme (Admin->CMS->Manage Pages->’Your Page’->Custom Design->Custom Theme drop down)

You’re custom module is now ready for use.

In a cms page, add this to your content:
view sourceprint?
[code]{{block type="fido_example/view" my_custom="Test" template="example/view.phtml" }}[/code]

Or something like this in the Layout Update XML area (Custom Design area in a CMS page)

[code]
<reference name="right">
<block type="fido_example/view" my_custom="Test" template="example/view.phtml" />
</reference>

[/code]

//this will add your block in the right column

Now you should successfully have your block and the Hello World message being displayed (on your CMS page).

Sources : Magento Commerce

5 thoughts on “How to Create a custom module in Magento

  1. I loved as much as you will receive carried out
    right here. The sketch is tasteful, your authored

    subject matter stylish. nonetheless, you command get bought an edginess

    over that you wish be delivering the following. unwell unquestionably come further formerly again
    as exactly

    the same nearly very often inside case you shield this increase.

  2. Greetings! I know this is kinda off topic but I was wondering which
    blog platform are you using for this site? I’m getting sick and tired of WordPress because I’ve had issues with hackers and I’m looking at options for another platform. I would be great if you could point me in the direction of a good platform.

  3. You really make it seem so easy with your presentation however I find this topic to be really one thing that I believe I might never understand. It sort of feels too complex and very extensive for me. I am having a look ahead to your subsequent post, I will attempt to get the hang of it!

  4. fantastic put up, very informative. I’m wondering why the opposite specialists of this sector do not realize this. You should continue your writing. I am confident, you’ve a great readers’ base already!

Leave a Reply

Your email address will not be published. Required fields are marked *

Press Enter to Search