Yönetici modülü için yeni bir alan türü oluşturmak Magento

0 Cevap php

in a custom module with admin pages, in the file
app\code\local\Namespace\Mymodulw\Block\Myblock\Edit\Tab\Form.php you can add somthing like this

$fieldset->addField('title', 'text', array(
        'label'     => Mage::helper('mymodule')->__('Title'),
        'class'     => 'required-entry',
        'required'  => true,
        'name'      => 'title',
    ));

Bu düzenleme sayfada tip bir metin girişi oluşturmak, ben ne çalışıyorum yeni bir tür oluşturmak olduğunu, sonra ben böyle bir şey yapabilirsiniz

$fieldset->addField('title', 'mytype', array(
        'label'     => Mage::helper('mymodule')->__('Title'),
        'class'     => 'required-entry',
        'required'  => true,
        'name'      => 'title',
    ));

can you see the diference?? thanks

0 Cevap