Subversion Repositories oidplus

Rev

Rev 632 | Rev 641 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 632 Rev 635
Line 120... Line 120...
120
                $class_files = array();
120
                $class_files = array();
121
 
121
 
122
                // Global namespace / OIDplus
122
                // Global namespace / OIDplus
123
                // (the last has the highest priority)
123
                // (the last has the highest priority)
124
                foreach ($valid_plugin_folders as $folder) {
124
                foreach ($valid_plugin_folders as $folder) {
125
                        $class_files = array_merge($class_files, glob(__DIR__ . '/../plugins/_thirdParty/'.'*'.'/'.$folder.'/'.'*'.'/'.'*'.'.class.php'));
-
 
126
                        $class_files = array_merge($class_files, glob(__DIR__ . '/../plugins/'.$folder.'/'.'*'.'/'.'*'.'.class.php'));
125
                        $class_files = array_merge($class_files, glob(__DIR__ . '/../plugins/'.'*'.'/'.$folder.'/'.'*'.'/'.'*'.'.class.php'));
127
                }
126
                }
128
                $class_files = array_merge($class_files, glob(__DIR__ . '/classes/'.'*'.'.class.php'));
127
                $class_files = array_merge($class_files, glob(__DIR__ . '/classes/'.'*'.'.class.php'));
129
                $class_files = array_merge($class_files, glob(__DIR__ . '/../vendor/danielmarschall/fileformats/'.'*'.'.class.php'));
128
                $class_files = array_merge($class_files, glob(__DIR__ . '/../vendor/danielmarschall/fileformats/'.'*'.'.class.php'));
130
                $class_files = array_merge($class_files, glob(__DIR__ . '/../vendor/danielmarschall/php_utils/'.'*'.'.class.php'));
129
                $class_files = array_merge($class_files, glob(__DIR__ . '/../vendor/danielmarschall/php_utils/'.'*'.'.class.php'));
131
                $func($class_refs, $class_files);
130
                $func($class_refs, $class_files);