Siempre tengo problemas para identificar las manijas adecuadas para todo, así que tengan paciencia conmigo aquí. Recorrí Google, SE y probé innumerables variaciones, sin suerte. (Y sí, he usado técnicas aquí: depuración de carga de diseño , pero no estoy seguro de qué hacer con la salida.
El problema: el controlador se carga. El diseño no lo hace.
Cuando visito la página en localhost/magento/mymodule/ajax/cart
Se hace eco 'AQUÍ!'. El var_dump de getLayouts genera:
array(4) {
[0]=> string(17) "mymodule_ajax_cart"
[1]=> string(13) "STORE_default"
[2]=> string(24) "THEME_frontend_theme_theme"
[3]=> string(19) "customer_logged_out"
}
El código
Controlador personalizado:
app/code/local/mycompany/mymodule/controllers/AjaxController.php
class Mycompany_Mymodule_AjaxController extends Mage_Core_Controller_Front_Action
{
public function cartAction() {
echo 'HERE!';
$this->loadLayout('mymodule_ajax_cart');
var_dump($this->getLayout()->getUpdate()->getHandles());
$this->renderLayout();
}
}
Archivo de configuración:
app/code/local/mycompany/mymodule/etc/config.xml
<config>
<modules>
<mycompany_mymodule>
<version>1.0.0</version>
</mycompany_mymodule>
</modules>
<global>
<helpers>
<mymodule>
<class>Mycompany_Mymodule_Helper</class>
</mymodule>
</helpers>
</global>
<frontend>
<routers>
<mymodule>
<use>standard</use>
<args>
<module>Mycompany_Mymodule</module>
<frontName>mymodule</frontName>
</args>
</mymodule>
</routers>
<layout>
<updates>
<mymodule>
<file>mymodule.xml</file>
</mymodule>
</updates>
</layout>
</frontend>
</config>
Archivo de diseño en
app/design/frontent/base/default/layout/mymodule.xml
<?xml version="1.0"?>
<layout>
<mymodule_ajax>
<block type="core/text_list" name="content" output="toHtml" as="content" />
</mymodule_ajax>
<mymodule_ajax_cart>
<reference name="content">
<block type="core/template" template="mymodule/ajaxcart.phtml" />
</reference>
</mymodule_ajax_cart>
</layout>
Y finalmente, el archivo de plantilla en
app/design/frontend/theme/theme/template/mymodule/ajaxcart.phtml
<div style="border: 2px solid red">
Hello world
</div>
Por favor avise. Sé que me falta algo obvio, pero por mi vida no puedo encontrarlo.
mycompany_mymodule
(primer identificador). Cada etiqueta xml que tiene el prefijo mymodule
sin el mycompany_
prefijo es malo en mi humilde opinión. Debe cambiar todos los nombres de etiquetas para tener el prefijo mycompany_
antes mymodule
.
mycompany_mymodule
prefijo en cada identificador? (mycompany_mymodule_ajax
por ejemplo)