I read a lot of documentation about custom module creation for Magento.
For my fist try, i created the module structure using Module Creator, and this is the code i added in /app/code/local/Test/MyModule/etc/config.xml:
<?xml version="1.0"?>
<config>
<modules>
<Test_MyModule>
<version>0.1.0</version>
</Test_MyModule>
</modules>
<!-- frontend, admin, adminhtml -->
<global>
<!-- models, resources, blocks, helpers -->
<events>
<sales_order_place_before> <!-- event i need to catch -->
<observers>
<trigger_mymodule_placeorder>
<type>model</type>
<class>test/mymodule/model_observer</class>
<method>sendOrder</method>
</trigger_mymodule_placeorder>
</observers>
</sales_order_place_before>
</events>
</global>
</config>
My /app/etc/modules/Test_MyModule.xml file:
<?xml version="1.0"?>
<config>
<modules>
<Test_MyModule>
<active>true</active>
<codePool>local</codePool>
</Test_MyModule>
</modules>
</config>
And this is my /app/code/local/Test/MyModule/Model/Observer.php:
<?php
class Test_MyModule_Model_Observer
{
public function sendOrder()
{
// do something.
}
}
.. but the Test_MyModule_Model_Observer::sendOrder() function is never triggered (i tryed putting inside it a dummy database logger to see if/when the function get executed).
I know the module itself is loaded correctly becose, in the module's config.xml, it declare a new link in main menu and the link get displayed correctly (after flushing magento's cache), so i guess the problem is the function naming convention that I am missing somewhere.. but where?