1
0
mirror of https://github.com/hauke68/Magallanes.git synced 2025-09-13 20:50:18 +02:00
Magallanes/Mage/Task/Update.php

23 lines
555 B
PHP
Raw Normal View History

<?php
class Mage_Task_Update
{
private $_config = null;
public function run(Mage_Config $config)
{
$this->_config = $config;
2012-02-15 21:52:35 +01:00
$task = Mage_Task_Factory::get('scm/update', $config);
$task->init();
2012-02-15 21:52:35 +01:00
Mage_Console::output('Updating application via ' . $task->getName() . ' ... ', 1, 0);
$result = $task->run();
if ($result == true) {
2012-02-15 21:52:35 +01:00
Mage_Console::output('OK' . PHP_EOL, 0);
} else {
Mage_Console::output('FAIL' . PHP_EOL, 0);
}
}
}