示例#1
0
 function __construct($options = null)
 {
     if (!is_array($options)) {
         $options = array();
     }
     // remove image handling, we're gonna handle this another way
     $options['orient_image'] = false;
     // turn off auto image rotation
     $options['image_versions'] = array();
     $options['upload_dir'] = filemanager_utils::get_full_cwd() . '/';
     $options['upload_url'] = filemanager_utils::get_cwd_url() . '/';
     // set everything up.
     parent::__construct($options);
 }