Changes on console feedback colors. Example of User Tasks.

This commit is contained in:
Andrs Montaez
2011-11-23 09:38:52 -02:00
parent d6166a674d
commit e5f0fe9cfa
13 changed files with 174 additions and 93 deletions
+24
View File
@@ -0,0 +1,24 @@
<?php
class Mage_Task_Update
{
private $_config = null;
public function run(Mage_Config $config)
{
$this->_config = $config;
$taskConfig = $config->getConfig();
$task = Mage_Task_Factory::get('scm/update', $taskConfig);
$task->init();
Mage_Console::output( PHP_TAB . 'Updating application via ' . $task->getName() . ' ... ');
$result = $task->run();
if ($result == true) {
Mage_Console::output(PHP_TAB . 'OK' . PHP_EOL);
} else {
Mage_Console::output(PHP_TAB . 'FAIL' . PHP_EOL);
}
}
}