more widgets

This commit is contained in:
zotlabs
2017-03-15 18:48:27 -07:00
committed by Mario Vavti
parent 477ed97c2f
commit 17977effe7
5 changed files with 172 additions and 173 deletions

View File

@@ -28,17 +28,18 @@
include_once($file);
}
echo "Directory: include/RedDAV\n";
$files = glob('include/RedDAV/*.php');
echo "Directory: include/photo\n";
$files = glob('include/photo/*.php');
foreach($files as $file) {
echo $file . "\n";
include_once($file);
}
echo "Directory: Zotlabs\n";
$files = glob('Zotlabs/*/*.php');
foreach($files as $file) {
if(strpos($file,'SiteModule') === false) {
if((strpos($file,'SiteModule') === false) || (strpos($file,'SiteWidget') === false)) {
echo $file . "\n";
include_once($file);
}
@@ -51,21 +52,6 @@
include_once($file);
}
echo "Directory: include/photo\n";
$files = glob('include/photo/*.php');
foreach($files as $file) {
echo $file . "\n";
include_once($file);
}
// echo "Directory: mod\n";
// $files = glob('mod/*.php');
// foreach($files as $file) {
// echo $file . "\n";
// include_once($file);
// }
echo "Directory: addon\n";
$dirs = glob('addon/*');
@@ -93,6 +79,5 @@
foreach($files as $file) {
echo $file . "\n";
passthru($phpath . ' util/typohelper.php ' . $file);
// include_once($file);
passthru($phpath . ' util/typohelper.php ' . $file);
}