モジュールを作成しましたが、正常に動作します。ここで、必要な JS および CSS ファイルをロードできるように、いくつかのカスタム レイアウトの更新を含めたいと考えています。
そこで、app/code/community/module/relatedbrand/etc/config.xml に移動し、終了</global>
タグの下に次のコードを追加しました。
<frontend>
<layout>
<updates>
<relatedbrand>
<file>relatedbrand.xml</file>
</relatedbrand>
</updates>
</layout>
</frontend>
次に、 app/design/frontend/module/default/layout/relatedbrand.xml 内に次のものがあります。
<?xml version="1.0" encoding="UTF-8"?>
<layout version="0.1.0">
<reference name="head">
<action method="addJs"><script>jquery/jquery.js</script></action>
<action method="addJs"><script>carousel/carousel.min.js</script></action>
</reference>
</layout>
ただし、モジュールがアクティブなページに移動すると、 carousel.min.js が含まれていません。私は何が欠けていますか?