Horde_Pear_Package_Type::getIgnore PHP Method

getIgnore() public method

Return the ignore handler for this package.
public getIgnore ( ) : Horde_Pear_Package_Contents_Ignore
return Horde_Pear_Package_Contents_Ignore The ignore handler.
    public function getIgnore();

Usage Example

Example #1
0
 /**
  * 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();
 }