summaryrefslogtreecommitdiffstats
path: root/app/helpers.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers.php')
-rw-r--r--app/helpers.php22
1 files changed, 21 insertions, 1 deletions
diff --git a/app/helpers.php b/app/helpers.php
index 56d8eba..3bce65f 100644
--- a/app/helpers.php
+++ b/app/helpers.php
@@ -50,6 +50,26 @@ function is_installed()
* @param string $comment
* @return string
*/
-function _g($str, $comment='') {
+function _g($str, $comment='')
+{
return Simplel10n::getString($str, $comment);
+}
+
+/**
+ * Reset the moonmoon instance.
+ */
+function removeCustomFiles()
+{
+ $toRemove = [
+ custom_path('config.yml'),
+ custom_path('people.opml'),
+ custom_path('people.opml.bak'),
+ custom_path('cache')
+ ];
+
+ foreach ($toRemove as $path) {
+ if (file_exists($path)) {
+ unlink($path);
+ }
+ }
} \ No newline at end of file