forked from pear2/Net_RouterOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scanoptions.php
36 lines (34 loc) · 896 Bytes
/
scanoptions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/**
* File scanoptions.php for PEAR2_Net_RouterOS.
*
* PHP version 5.3
*
* @category Net
* @package PEAR2_Net_RouterOS
* @author Vasil Rangelov <[email protected]>
* @copyright 2011 Vasil Rangelov
* @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
* @version GIT: $Id$
* @link http://pear2.php.net/PEAR2_Net_RouterOS
*/
$scanoptions = array(
'ignore' => array()
);
$oldCwd = getcwd();
chdir(__DIR__);
foreach (new RecursiveIteratorIterator(
new RecursiveDirectoryIterator(
'.',
RecursiveDirectoryIterator::UNIX_PATHS
| RecursiveDirectoryIterator::SKIP_DOTS
),
RecursiveIteratorIterator::LEAVES_ONLY
) as $path) {
if ('.git' === $path->getFilename()) {
$scanoptions['ignore'][$path->getRealPath()]
= $path->isDir() ? 'dir' : 'file';
}
}
chdir($oldCwd);
return $scanoptions;