Check for share by link enabled
Display "Shared by link" section only if sharing by link is enabled.
This commit is contained in:
parent
527dd8cdf4
commit
ba3957fb8a
|
@ -55,6 +55,8 @@ if ($config->getAppValue('core', 'shareapi_enabled', 'yes') === 'yes') {
|
|||
"name" => $l->t('Shared with others')
|
||||
)
|
||||
);
|
||||
// Check if sharing by link is enabled
|
||||
if ($config->getAppValue('core', 'shareapi_allow_links', 'yes') === 'yes') {
|
||||
\OCA\Files\App::getNavigationManager()->add(
|
||||
array(
|
||||
"id" => 'sharinglinks',
|
||||
|
@ -65,4 +67,5 @@ if ($config->getAppValue('core', 'shareapi_enabled', 'yes') === 'yes') {
|
|||
)
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue