getIgnore() 공개 메소드

Return the ignore handler for this package.
public getIgnore ( ) : Horde_Pear_Package_Contents_Ignore
리턴 Horde_Pear_Package_Contents_Ignore The ignore handler.
예제 #1
0
파일: List.php 프로젝트: raz0rsdge/horde
 /**
  * Constructor.
  *
  * @param Horde_Pear_Package_Type $type The package type.
  *
  * @return NULL
  */
 public function __construct(Horde_Pear_Package_Type $type)
 {
     $this->_root = $type->getRootPath();
     $this->_include = $type->getInclude();
     $this->_ignore = $type->getIgnore();
     $this->_role = $type->getRole();
     $this->_install_as = $type->getInstallAs();
 }