basic proof of concept file activity support - will send activity via the filestorage module and via attach_delete()

This commit is contained in:
marijus
2015-01-18 14:44:58 +01:00
parent 6657712714
commit 1c2d956d7f
8 changed files with 246 additions and 7 deletions

View File

@@ -249,7 +249,10 @@ class RedBrowser extends DAV\Browser\Plugin {
'$header' => t('Files') . ": " . $this->escapeHTML($path) . "/",
'$quota' => $quota,
'$total' => t('Total'),
'$actionspanel' => $output
'$actionspanel' => $output,
'$shared' => t('Shared'),
'$create' => t('Create'),
'upload' => t('Upload')
));
$html .= replace_macros(get_markup_template('cloud_directory.tpl'), array(

View File

@@ -276,4 +276,4 @@ class RedFile extends DAV\Node implements DAV\IFile {
attach_delete($this->auth->owner_id, $this->data['hash']);
}
}
}