diff options
author | plegall <plg@piwigo.org> | 2013-03-15 10:06:38 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2013-03-15 10:06:38 +0000 |
commit | 0c49940ad2efbc1c2ad8d8a7ae9432c10173932f (patch) | |
tree | 64655a5f8fde388c7f558f9839cbca8ac6d5a9e0 /admin/include/functions.php | |
parent | 071036fa3ac278bbe4cc412b6853dd243fa68d44 (diff) |
merge r21566 from branch 2.5 to trunk
bug 2867 fixed: move get_dirs function to a function file, so that it can be used in plugin LocalFiles Editor (see r18629)
git-svn-id: http://piwigo.org/svn/trunk@21567 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/include/functions.php')
-rw-r--r-- | admin/include/functions.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/admin/include/functions.php b/admin/include/functions.php index 957ef086e..4e53d09e6 100644 --- a/admin/include/functions.php +++ b/admin/include/functions.php @@ -2456,4 +2456,30 @@ function delete_element_derivatives($infos, $type='all') } } } + +/** + * returns an array contening sub-directories, excluding ".svn" + * + * @param string $dir + * @return array + */ +function get_dirs($directory) +{ + $sub_dirs = array(); + if ($opendir = opendir($directory)) + { + while ($file = readdir($opendir)) + { + if ($file != '.' + and $file != '..' + and is_dir($directory.'/'.$file) + and $file != '.svn') + { + array_push($sub_dirs, $file); + } + } + closedir($opendir); + } + return $sub_dirs; +} ?>
\ No newline at end of file |