Satu hal yang saya sukai tentang penggunaan $installer
yang benar-benar ingin saya tambahkan adalah membuatnya mudah untuk menggantinya dengan sesuatu yang lain atau menjalankannya di luar lingkup kelas.
1. Menggantinya:
$installer = $this;
/* @var $installer Mage_Core_Model_Resource_Setup */
// Do basic stuff
$installer = Mage::getSingleton('eav/entity_setup', 'eav_setup');
/* @var $installer Mage_Eav_Model_Entity_Setup */
/// Do stuff with attributes
2. Lingkup luar:
$ php -a
php> require_once 'app / Mage.php';
php> Mage :: init ();
php> memerlukan 'app / code / local / Vendor / Module / data / vendormodule_setup / data-upgrade-0.1.1-0.1.2.php';
Pembaruan berhasil!
Debug data dump: array (4) {
'id' =>
int (123)
'foo' =>
string (3) "bar"
}
Tentu saja dengan data-upgrade-0.1.1-0.1.2.php
memiliki:
//$installer = $this;
$installer = Mage::getResourceSingleton('core/setup', 'vendormodule_setup');
/* @var $installer Mage_Core_Model_Resource_Setup */
// Do lots of stuff ...
echo "Upgrade worked!\n";
echo "Debug data dump: ";
var_dump($debug);
Jadi ini mencegah Fatal error: Using $this when not in object context