linea21-externals
[ class tree: linea21-externals ] [ index: linea21-externals ] [ all elements ]

Source for file filemanager.config.php

Documentation is available at filemanager.config.php

  1. <?php
  2.  
  3. /**
  4.  *    Filemanager PHP connector configuration
  5.  *
  6.  *    filemanager.config.php
  7.  *    config for the filemanager.php connector
  8.  *
  9.  *    @license    MIT License
  10.  *    @author        Riaan Los <mail (at) riaanlos (dot) nl>
  11.  *    @author        Simon Georget <simon (at) linea21 (dot) com>
  12.  *    @copyright    Authors
  13.  *  @package     linea21.externals
  14.  *  @subpackage Filemanager
  15.  */
  16.  
  17.  
  18. /**
  19.  *    Check if user is authorized
  20.  *
  21.  *    @return boolean true is access granted, false if no access
  22.  */
  23. function auth({
  24.   // You can insert your own code over here to check if the user is authorized.
  25.   // If you use a session variable, you've got to start the session first (session_start())
  26.   return true;
  27. }
  28.  
  29.  
  30. /**
  31.  *    Language settings
  32.  */
  33. $config['culture''en';
  34.  
  35. /**
  36.  *    PHP date format
  37.  *    see http://www.php.net/date for explanation
  38.  */
  39. $config['date''d M Y H:i';
  40.  
  41. /**
  42.  *    Icons settings
  43.  */
  44. $config['icons']['path''images/fileicons/';
  45. $config['icons']['directory''_Open.png';
  46. $config['icons']['default''default.png';
  47.  
  48. /**
  49.  *    Upload settings
  50.  */
  51. $config['upload']['overwrite'false// true or false; Check if filename exists. If false, index will be added
  52. $config['upload']['size'false// integer or false; maximum file size in Mb; please note that every server has got a maximum file upload size as well.
  53. $config['upload']['imagesonly'false// true or false; Only allow images (jpg, gif & png) upload?
  54.  
  55. /**
  56.  *    Images array
  57.  *    used to display image thumbnails
  58.  */
  59. $config['images'array('jpg''jpeg','gif','png');
  60.  
  61.  
  62. /**
  63.  *    Files and folders
  64.  *    excluded from filtree
  65.  */
  66. $config['unallowed_files']array('.htaccess');
  67. $config['unallowed_dirs']array('_thumbs''.svn','.CDN_ACCESS_LOGS''cloudservers');
  68.  
  69. /**
  70.  *    FEATURED OPTIONS
  71.  *    for Vhost or outside files folder
  72.  */
  73. // $config['doc_root'] = '/home/user/userfiles'; // No end slash
  74.  
  75.  
  76. /**
  77.  *    Optional Plugin
  78.  *    rsc: Rackspace Cloud Files: http://www.rackspace.com/cloud/cloud_hosting_products/files/
  79.  */
  80. $config['plugin'null;
  81. //$config['plugin'] = 'rsc';
  82.  
  83.  
  84.  
  85. //    not working yet
  86. //$config['upload']['suffix'] = '_'; // string; if overwrite is false, the suffix will be added after the filename (before .ext)
  87.  
  88. ?>

Documentation generated on Thu, 03 May 2012 15:04:37 +0200 by phpDocumentor 1.4.1