protected function elFinderVolumeDrupal::_checkArchivers in elFinder file manager 7.2
Same name and namespace in other branches
- 8.2 src/Controller/elFinderVolumeDrupal.php \elFinderVolumeDrupal::_checkArchivers()
- 6.2 inc/elfinder.drupalfs.driver.inc \elFinderVolumeDrupal::_checkArchivers()
File
- inc/elfinder.drupalfs.driver.inc, line 572 
- elFinder driver for Drupal filesystem.
Class
- elFinderVolumeDrupal
- @file
Code
protected function _checkArchivers() {
  $this->archivers = variable_get('elfinder_settings_misc_archivers', array());
  if (count($this->archivers) == 0) {
    parent::_checkArchivers();
    variable_set('elfinder_settings_misc_archivers', $this->archivers);
  }
}