New reorder of classes and configuration. New instantiation of Tasks.

This commit is contained in:
Andrs Montaez
2011-11-23 01:17:06 -02:00
parent 3caa3d7313
commit b161220e69
23 changed files with 257 additions and 108 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
abstract class Mage_Task_TaskAbstract
{
public abstract function getName();
public abstract function run($config);
protected function _runLocalCommand($command)
{
return Mage_Console::executeCommand($command);
}
protected function _runRemoteCommand($command)
{
}
}