カスタム拡張のモデルを拡張しようとしています。十分に単純です...しかし、書き換えは機能していないようです。
コミュニティコードフォルダーのモジュールにある次のモデルを書き直したい:
Belvg_Stores_Model_State
ローカルコードフォルダーのモジュールにある私自身の場合:
Myco_Storelocator_Model_State
Myco_Storelocator からの構成 xml は次のとおりです。ブロックの書き換えは機能していますが、状態の書き換えは機能していません。
<?xml version="1.0"?>
<config>
<global>
<modules>
<myco_storelocator>
<version>0.1.0</version>
</myco_storelocator>
</modules>
<blocks>
<storelocator><class>Myco_Storelocator_Block</class></storelocator>
<stores>
<rewrite>
<front>Myco_Storelocator_Block_Front</front>
</rewrite>
</stores>
</blocks>
<models>
<stores>
<rewrite>
<state>Myco_Storelocator_Model_State</state>
</rewrite>
</stores>
</models>
</global>
<frontend>
<layout>
<updates>
<storelocator>
<file>storelocator.xml</file>
</storelocator>
</updates>
</layout>
</frontend>
</config>
助けてくれてありがとう...