1 system.tar.inc | public Archive_Tar::setIgnoreList($list) |
This method sets the regular expression for ignoring all files and directories matching the filenames in the array list at import, for example: $arch->setIgnoreList(array('CVS', '.svn', 'bin/tool'));
@access public
Parameters
array $list a list of file or directory names to ignore:
File
- core/
modules/ system/ system.tar.inc, line 795
Class
Code
public function setIgnoreList($list)
{
$list = str_replace(array('#', '.', '^', '$'), array('\#', '\.', '\^', '\$'), $list);
$regexp = '#/' . join('$|/', $list) . '#';
$this->setIgnoreRegexp($regexp);
}