[ Index ]
 

Code source de Symfony 1.0.0

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/lib/vendor/phing/listener/ -> NoBannerLogger.php (source)

   1  <?php
   2  /*
   3   * $Id: NoBannerLogger.php 3076 2006-12-18 08:52:12Z fabien $
   4   *
   5   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
   6   * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   7   * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
   8   * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
   9   * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  10   * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  11   * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  12   * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  13   * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  14   * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  15   * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  16   *
  17   * This software consists of voluntary contributions made by many individuals
  18   * and is licensed under the LGPL. For more information please see
  19   * <http://phing.info>.
  20   */
  21  
  22  include_once 'phing/listener/DefaultLogger.php';
  23  
  24  /**
  25   *  Extends DefaultLogger to strip out empty targets.  This logger is most
  26   *  commonly used and also enforced by the default phing invokation scripts
  27   *  in bin/.
  28   *
  29   *  @author    Andreas Aderhold <andi@binarycloud.com>
  30   *  @copyright © 2001,2002 THYRELL. All rights reserved
  31   *  @version   $Revision: 1.4 $ $Date: 2003/12/24 13:02:08 $
  32   *  @package   phing.listener
  33   */
  34  class NoBannerLogger extends DefaultLogger {
  35  
  36      private $targetName = null;
  37  
  38      function targetStarted(BuildEvent $event) {
  39          $target = $event->getTarget();
  40          $this->targetName = $target->getName();
  41      }
  42  
  43      function targetFinished(BuildEvent $event) {
  44          $this->targetName = null;
  45      }
  46  
  47      function messageLogged(BuildEvent $event) {
  48          if ($event->getPriority() > $this->msgOutputLevel ||
  49                  null === $event->getMessage() ||
  50                           trim($event->getMessage() === "")) {
  51              return;
  52          }
  53  
  54          if ($this->targetName !== null) {
  55              print($this->lSep . "Target: ".$this->targetName . $this->lSep);
  56              $this->targetName = null;
  57          }
  58  
  59          parent::messageLogged($event);
  60      }
  61  }


Généré le : Fri Mar 16 22:42:14 2007 par Balluche grâce à PHPXref 0.7