diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-02-09 22:29:17 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-02-09 22:29:17 +0000 |
commit | 7126862be4c40dfd24f01a4e68aba5de9b9488fa (patch) | |
tree | a73d3f9ec2f62048ec6e0f2b236ff2d2b6ec9d03 /engine/lib/elgglib.php | |
parent | d02164662eda11c0170bc4023fc33d35c6c456f8 (diff) | |
download | elgg-7126862be4c40dfd24f01a4e68aba5de9b9488fa.tar.gz elgg-7126862be4c40dfd24f01a4e68aba5de9b9488fa.tar.bz2 |
Fixes #1503, fixes #1474: Library files are loaded using a hard-coded list to better deal with removed files. Also, ~4% performance increase per page load on my server!
git-svn-id: http://code.elgg.org/elgg/trunk@3927 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/elgglib.php')
-rw-r--r-- | engine/lib/elgglib.php | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/engine/lib/elgglib.php b/engine/lib/elgglib.php index e6da00969..705852ac9 100644 --- a/engine/lib/elgglib.php +++ b/engine/lib/elgglib.php @@ -1279,32 +1279,6 @@ function friendly_title($title) { */ /** - * Recursive function designed to load library files on start - * (NB: this does not include plugins.) - * - * @param string $directory Full path to the directory to start with - * @param string $file_exceptions A list of filenames (with no paths) you don't ever want to include - * @param string $file_list A list of files that you know already you want to include - * @return array Array of full filenames - */ -function get_library_files($directory, $file_exceptions = array(), $file_list = array()) { - $extensions_allowed = array('.php'); - /*if (is_file($directory) && !in_array($directory,$file_exceptions)) { - $file_list[] = $directory; - } else */ - if ($handle = opendir($directory)) { - while ($file = readdir($handle)) { - if (in_array(strrchr($file, '.'), $extensions_allowed) && !in_array($file,$file_exceptions)) { - $file_list[] = $directory . "/" . $file; - //$file_list = get_library_files($directory . "/" . $file, $file_exceptions, $file_list); - } - } - } - - return $file_list; -} - -/** * Ensures that the installation has all the correct files, that PHP is configured correctly, and so on. * Leaves appropriate messages in the error register if not. * |