aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2013-03-15 10:05:15 +0000
committerplegall <plg@piwigo.org>2013-03-15 10:05:15 +0000
commitdbd08fead81d8ee2bbbe64b23010bc8eaf3fed31 (patch)
tree07d7e87ed49522f047015711456c36bc8b6cf395
parent6f84467897d2b1aa98e95eb24977be27765b46dc (diff)
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/branches/2.5@21566 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--admin/extend_for_templates.php26
-rw-r--r--admin/include/functions.php26
2 files changed, 26 insertions, 26 deletions
diff --git a/admin/extend_for_templates.php b/admin/extend_for_templates.php
index cb2845adc..0faced402 100644
--- a/admin/extend_for_templates.php
+++ b/admin/extend_for_templates.php
@@ -113,32 +113,6 @@ $eligible_templates = array(
$flip_templates = array_flip($eligible_templates);
-/**
- * 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;
-}
-
$available_templates = array_merge(
array('N/A' => '----------'),
get_dirs(PHPWG_ROOT_PATH.'themes'));
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