summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/FreshRSS.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/app/FreshRSS.php b/app/FreshRSS.php
index 166ee1709..dc7d0b375 100644
--- a/app/FreshRSS.php
+++ b/app/FreshRSS.php
@@ -79,24 +79,4 @@ class FreshRSS extends Minz_FrontController {
Minz_Session::_param('notification');
}
}
-
- // private function loadExtensions() {
- // $extensionPath = FRESHRSS_PATH . '/extensions/';
- // //TODO: Add a preference to load only user-selected extensions
- // foreach (scandir($extensionPath) as $key => $extension) {
- // if (ctype_alpha($extension)) {
- // $mtime = @filemtime($extensionPath . $extension . '/style.css');
- // if ($mtime !== false) {
- // Minz_View::appendStyle(Minz_Url::display('/ext.php?c&e=' . $extension . '&' . $mtime));
- // }
- // $mtime = @filemtime($extensionPath . $extension . '/script.js');
- // if ($mtime !== false) {
- // Minz_View::appendScript(Minz_Url::display('/ext.php?j&e=' . $extension . '&' . $mtime));
- // }
- // if (file_exists($extensionPath . $extension . '/module.php')) {
- // //TODO: include
- // }
- // }
- // }
- // }
}