mirror of
https://github.com/hauke68/Magallanes.git
synced 2025-09-13 12:40:18 +02:00
20 lines
451 B
PHP
20 lines
451 B
PHP
|
<?php
|
||
|
class Task_TaskWithParameters
|
||
|
extends Mage_Task_TaskAbstract
|
||
|
{
|
||
|
public function getName()
|
||
|
{
|
||
|
$booleanOption = $this->getParameter('booleanOption', false);
|
||
|
if ($booleanOption) {
|
||
|
return 'A Sample Task With Parameters [booleanOption=true]';
|
||
|
} else {
|
||
|
return 'A Sample Task With Parameters [booleanOption=false]';
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
public function run()
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
}
|