Pregunta

Quiero crear mi propio sitio de administración.

configuración.xml:

<config>
    <modules>
        <Mymodule_Test>
            <version>0.1.0</version>
        </Mymodule_Test>
    </modules>
    <global>
        <helpers>
            <test>
                <class>Mymodule_Test_Helper</class>
            </test>
        </helpers>
    </global>
    <admin>
        <routers>
            <mymoduletest>
                <use>admin</use>
                <args>
                   <module>Mymodule_Test</module>
                   <frontName>mymoduletest</frontName>
                </args>
            </mymoduletest>
        </routers>
    </admin>
    <adminhtml>
        <layout>
            <updates>
                <test>
                    <file>test.xml</file>
                </test>
            </updates>
        </layout>
    </adminhtml>
</config>

administradorhtml.xml:

<menu>
    <test translate="title" module="test">
        <title>Test</title>
        <sort_order>300</sort_order>
        <children>
            <!-- child items go here -->
            <show translate="title" module="test">
                <title>SubTest</title>
                <sort_order>10</sort_order>
                <action>mymoduletest/adminhtml_show</action>
            </show>
        </children>
    </test>
</menu>

controladores\Adminhtml\ShowController.php :

<?php Class Mymodule_Test_Adminhtml_ShowController extends Mage_Adminhtml_Controller_Action{

protected function _initAction()
{
    $this->loadLayout();
    $this->_setActiveMenu('test/show');
    return $this;
}

public function indexAction()
{
    $this->_initAction()
         ->_addContent($this->getLayout()->createBlock('Mymodule_Test_Block_Adminhtml_Show'))
         ->renderLayout();
}}

Bloquear\Adminhtml\Show.php :

<?php class Mymodule_Test_Block_Adminhtml_Show extends Mage_Adminhtml_Block_Widget_Form_Container{

public function __construct()
{

    parent::__construct();

    $this->removeButton('back');
    $this->removeButton('reset');
    $this->removeButton('delete');
    $this->removeButton('add');
    $this->removeButton('save');
    $this->removeButton('edit');

    $this->setId('testContainer');

    $this->_blockGroup = 'test';
    $this->_controller = 'adminhtml';
    $this->_mode = 'show';

    $this->_headerText  = 'TEST';
}}

Mi página de administración muestra el texto del encabezado y ahora obtengo esta excepción:

excepción 'Mage_Core_Exception' con mensaje 'tipo de bloque no válido:Mage_test_block_adminhtml_show_form 'in /var/www/html/magento/app/mage.php:595

Y en mi página de administración esto:

Error fatal:Llame a una función de miembro setData () en boolean in /var/www/html/magento/app/code/core/mage/adminhtml/block/widget/form/container.php en la línea 129

Por qué magento crea el bloque: Mage_Test_Block_Adminhtml_Show_Form y no Mymodule_Test_Block_Adminhtml_Show_Form ???

El bloque\Adminhtml\Show\Form.php:

<?php class Mymodule_Test_Block_Adminhtml_Show_Form extends Mage_Adminhtml_Block_Widget_Form {

public function __construct()
{
    parent::__construct();

    $this->setId('showGeneralForm');
    $this->setTemplate('test/show.phtml');
}

protected function _beforeToHtml()
{
    return parent::_beforeToHtml();
}}
¿Fue útil?

Solución

agregue lo siguiente en su archivo config.xml en <global> etiqueta

<blocks>
    <test>
      <class>Mymodule_Test_Block</class>
   </test>
</blocks>

Otros consejos

Esto debería ser así:

en su config.xml

<config>
.....
    <global>
       .......
       <blocks>
            <test>
               <class>Mymodule_Test_Block</class>
            </test>
       </blocks>
      .......
    </global>
.....
</config>

y en su controlador

public function indexAction()
{
    $this->_initAction()
         ->_addContent($this->getLayout()->createBlock('test/adminhtml_show'))
         ->renderLayout();
}

En tu config.xml archiva tu clase no define

Pero tienes que llamar a la clase de bloque a las Mymodule_Test_Block_Adminhtml_Show en ShowController.php

Según el sistema magento, usted no se puede utilizar la clase directa nombre en crearBlok función.

Necesita llamar a la clase de bloque por tipo de bloque

Entonces, es necesario definir el tipo de bloque en xml

<global>
        <blocks>
            <test> <-- module block identifire -->
                <class>Mymodule_Test_Block</class>
            </test>
        </blocks>

        <helpers>
    ...

Como quieras llamar a clase Mymodule_Test_Block_Adminhtml_Show entonces

el tipo de bloque debe ser 'test/adminhtml_show'

Según el sistema magento

  • test => Mymodule_Test_Block
  • adminhtml_show =>Adminhtml_Show

$this->getLayout()->createBlock('Mymodule_Test_Block_Adminhtml_Show')

cambiar a

$this->getLayout()->createBlock('test/adminhtml_show')
Licenciado bajo: CC-BY-SA con atribución
No afiliado a magento.stackexchange
scroll top