]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - inc/poche/Tools.class.php
Add SHAARLI support to view template
[github/wallabag/wallabag.git] / inc / poche / Tools.class.php
old mode 100644 (file)
new mode 100755 (executable)
index 0eb0d9e..52d0f2d
@@ -233,4 +233,25 @@ class Tools
 
         return $minutes;
     }
+
+
+    public static function createMyConfig()
+    {
+        $myconfig_file = './inc/poche/myconfig.inc.php';
+        
+        if (!is_writable('./inc/poche/')) {
+            self::logm('you don\'t have write access to create ./inc/poche/myconfig.inc.php');
+            die('You don\'t have write access to create ./inc/poche/myconfig.inc.php.');
+        }
+
+        if (!file_exists($myconfig_file))
+        {
+            $fp = fopen($myconfig_file, 'w');
+            fwrite($fp, '<?php'."\r\n");
+            fwrite($fp, "define ('POCHE_VERSION', '1.0-beta3');" . "\r\n");
+            fwrite($fp, "define ('SALT', '" . md5(time() . $_SERVER['SCRIPT_FILENAME'] . rand()) . "');" . "\r\n");
+            fwrite($fp, "define ('LANG', 'en_EN.utf8');" . "\r\n");
+            fclose($fp);
+        }
+    }
 }
\ No newline at end of file