summaryrefslogtreecommitdiffstats
path: root/recommendedsites/recommendedsites.php
diff options
context:
space:
mode:
Diffstat (limited to 'recommendedsites/recommendedsites.php')
-rw-r--r--recommendedsites/recommendedsites.php40
1 files changed, 40 insertions, 0 deletions
diff --git a/recommendedsites/recommendedsites.php b/recommendedsites/recommendedsites.php
new file mode 100644
index 000000000..2c59834c8
--- /dev/null
+++ b/recommendedsites/recommendedsites.php
@@ -0,0 +1,40 @@
+<?php
+/**
+ * ownCloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Alessandro Cosentino <cosenal@gmail.com>
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright Alessandro Cosentino 2012
+ * @copyright Bernhard Posselt 2012, 2014
+ */
+
+namespace OCA\News\RecommendedSites;
+
+class RecommendedSites {
+
+ private $directory;
+
+ /**
+ * @param string $directory the absolute path to where the recommendation
+ * config files lie without a trailing slash
+ */
+ public function __construct($directory) {
+ $this->directory = $directory;
+ }
+
+
+ public function forLanguage($languageCode, $default='en') {
+ $file = $this->directory . '/sites.' . $languageCode . '.json';
+
+ if (!file_exists($file)) {
+ $file = $this->directory . '/sites.' . $default . '.json';
+ }
+
+ return json_decode(file_get_contents($file), true);
+ }
+
+
+} \ No newline at end of file