diff options
author | nashe <thomas@chauchefoin.fr> | 2017-10-17 09:42:17 +0200 |
---|---|---|
committer | nashe <thomas@chauchefoin.fr> | 2017-10-17 09:42:17 +0200 |
commit | db2ab071c73feb6ac510bfdc6ee5b9ddad1566ea (patch) | |
tree | 874f2b2e344c3f80f99c6985da0f86ce48815126 /app | |
parent | d68019ab377f1758e7e8a3f7962f7a6dca56fde3 (diff) | |
download | planet-db2ab071c73feb6ac510bfdc6ee5b9ddad1566ea.tar planet-db2ab071c73feb6ac510bfdc6ee5b9ddad1566ea.tar.gz planet-db2ab071c73feb6ac510bfdc6ee5b9ddad1566ea.tar.bz2 planet-db2ab071c73feb6ac510bfdc6ee5b9ddad1566ea.tar.xz planet-db2ab071c73feb6ac510bfdc6ee5b9ddad1566ea.zip |
Add GuzzleHarness and use it
Diffstat (limited to 'app')
-rw-r--r-- | app/helpers.php | 22 |
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 |