123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- /*
- * This file is part of the symfony package.
- * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- /**
- * Base class for tasks that depends on a sfCommandApplication object.
- *
- * @package symfony
- * @subpackage task
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
- * @version SVN: $Id: sfCommandApplicationTask.class.php 9652 2008-06-18 21:38:48Z nicolas $
- */
- abstract class sfCommandApplicationTask extends sfTask
- {
- protected
- $commandApplication = null;
- public function setCommandApplication(sfCommandApplication $commandApplication = null)
- {
- $this->commandApplication = $commandApplication;
- }
- /**
- * @see sfTask
- */
- public function log($messages)
- {
- if (is_null($this->commandApplication) || $this->commandApplication->isVerbose())
- {
- parent::log($messages);
- }
- }
- /**
- * @see sfTask
- */
- public function logSection($section, $message, $size = null, $style = 'INFO')
- {
- if (is_null($this->commandApplication) || $this->commandApplication->isVerbose())
- {
- parent::logSection($section, $message, $size, $style);
- }
- }
- }
|