aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-03-15 18:48:27 -0700
committerzotlabs <mike@macgirvin.com>2017-03-15 18:48:27 -0700
commit664c762b35d894b6c055eb57a72f01dae97b48c3 (patch)
treea6e6865f4849539112bb1fffb505c1f1e1f1fe75 /util
parent9cb9608209ab5f9fb123acc82a563ba54c450db1 (diff)
downloadvolse-hubzilla-664c762b35d894b6c055eb57a72f01dae97b48c3.tar.gz
volse-hubzilla-664c762b35d894b6c055eb57a72f01dae97b48c3.tar.bz2
volse-hubzilla-664c762b35d894b6c055eb57a72f01dae97b48c3.zip
more widgets
Diffstat (limited to 'util')
-rw-r--r--util/typo.php25
1 files changed, 5 insertions, 20 deletions
diff --git a/util/typo.php b/util/typo.php
index f9c9e5353..a8d363340 100644
--- a/util/typo.php
+++ b/util/typo.php
@@ -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);
}