for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Files Plugin - Default backend.
*
* This plugin provides the default WebDAV backend for Files.
*/
class PluginFilesbackendDefault extends Plugin
{
* Constructor.
public function __construct()
}
* Called to initialize the plugin and register for hooks.
public function init()
$this->registerHook('server.core.settings.init.before');
* Function is executed when a hook is triggered by the PluginManager.
* @param string $eventID Identifier of the hook
* @param array $data Reference to the data of the triggered hook
public function execute($eventID, &$data)
switch ($eventID) {
case 'server.core.settings.init.before':
$this->onBeforeSettingsInit($data);
break;
* Called when the core Settings class is initialized and ready to accept sysadmin default
* settings. Registers the sysadmin defaults for the files backend plugin.
public function onBeforeSettingsInit(&$data)
$data['settingsObj']->addSysAdminDefaults([
'zarafa' => [
'v1' => [
'plugins' => [
'filesbackendDefault' => [
'enable' => true,
],
// Compatibility alias for pre-existing configurations
'filesbackendOwncloud' => [
]);