Uma coisa que gosto de usar $installer
que realmente quero adicionar é que facilita a substituição por outra coisa ou a execução fora do escopo da classe.
1. Substituindo-o:
$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. Âmbito externo:
$ php -a
php> require_once 'app / Mage.php';
php> Mage :: init ();
php> requer 'app / code / local / Vendor / Module / data / vendormodule_setup / data-upgrade-0.1.1-0.1.2.php';
A atualização funcionou!
Depurar dados dump: array (4) {
'id' =>
int (123)
'foo' =>
string (3) "barra"
}
Claro que com data-upgrade-0.1.1-0.1.2.php
:
//$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);
Então isso impede Fatal error: Using $this when not in object context