mirror of https://github.com/hauke68/Magallanes
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
360 B
16 lines
360 B
<?php |
|
class Mage_Task_Factory |
|
{ |
|
/** |
|
* |
|
* |
|
* @param string $taskName |
|
* @return Mage_Task_TaskAbstract |
|
*/ |
|
public static function get($taskName) |
|
{ |
|
$taskName = str_replace(' ', '_', ucwords(str_replace('/', ' ', $taskName))); |
|
$className = 'Mage_Task_BuiltIn_' . $taskName; |
|
return new $className; |
|
} |
|
} |