]> git.p6c8.net - jirafeau_project.git/blobdiff - lib/config.original.php
better time estimation with smoother result, ref #11
[jirafeau_project.git] / lib / config.original.php
index 73238146ed0223a0c1a4db25728ad8df98e11842..47de3192c4e6c6b5c22610178304f3fe87cee66d 100644 (file)
@@ -34,7 +34,7 @@ $cfg['var_root'] = '';
  */
 $cfg['lang'] = 'auto';
 /* Select your style :) See media folder */
  */
 $cfg['lang'] = 'auto';
 /* Select your style :) See media folder */
-$cfg['style'] = 'modern';
+$cfg['style'] = 'courgette';
 /* Propose a preview link if file type is previewable is set to true. */
 $cfg['preview'] = true;
 /* Download page: propose a link to a download page is set to true. */
 /* Propose a preview link if file type is previewable is set to true. */
 $cfg['preview'] = true;
 /* Download page: propose a link to a download page is set to true. */
@@ -63,6 +63,27 @@ $cfg['admin_password'] = '';
  * If admin_password parameter is also set, admin_password is ignored.
  */
 $cfg['admin_http_auth_user'] = '';
  * If admin_password parameter is also set, admin_password is ignored.
  */
 $cfg['admin_http_auth_user'] = '';
+/* Select different options for availability of uploaded files.
+ * Possible values in array:
+ * 'minute': file is available for one minute
+ * 'hour': file available for one hour
+ * 'day': file available for one day
+ * 'week': file available for one week
+ * 'month': file is available for one month
+ * 'year': file available for one year
+ * 'none': unlimited availability
+ */
+$cfg['availabilities'] = array ('minute' => true,
+                                'hour' => true,
+                                'day' => true,
+                                'week' => true,
+                                'month' => true,
+                                'year' => false,
+                                'none' => false);
+/* Set maximal upload size expressed in MB.
+ * 0 mean unlimited upload size.
+ */
+$cfg['maximal_upload_size'] = 0;
 /* Installation is done ? */
 $cfg['installation_done'] = false;
 
 /* Installation is done ? */
 $cfg['installation_done'] = false;
 

patrick-canterino.de