1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59:
<?php
namespace Application\Controller\Console;
use ZfConsoleHelper\Controller\Console\AbstractConsoleController;
class IndexController extends AbstractConsoleController
{
public function indexAction()
{
try {
$this->throwExceptionIfNotCalledInsideAnCliEnvironment();
$this->attachSignalHandler($this);
$items = array('one', 'two', 'three', 'four');
$this->processItems(
$items,
$this,
'processItem',
$arguments = array(
'foo',
'bar'
)
);
} catch (Exception $exception) {
$this->handleException($exception);
}
}
protected function processItem($item, $stringOne, $stringTwo)
{
$console = $this->getConsole();
$console->writeLine(
'this is item "' . $item .
'" with string one "' . $stringOne . '"' .
'" and string two "' . $stringTwo . '"'
);
}
private function beVerbose()
{
return $this->hasBooleanParameter('v', 'verbose');
}
}