Una cosa que me gusta de usar $installer
que realmente quiero agregar es que hace que sea fácil reemplazarlo por otra cosa o ejecutarlo fuera del alcance de la clase.
1. Reemplazándolo:
$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. Alcance externo:
$ php -a
php> require_once 'app / Mage.php';
php> Mage :: init ();
php> requiere 'app / code / local / Vendor / Module / data / vendormodule_setup / data-upgrade-0.1.1-0.1.2.php';
Actualización funcionó!
Volcado de datos de depuración: array (4) {
'id' =>
int (123)
'foo' =>
cadena (3) "barra"
}
Por supuesto con data-upgrade-0.1.1-0.1.2.php
tener:
//$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);
Entonces esto previene Fatal error: Using $this when not in object context