Add 'no_quick_add' link registry setting so apps can opt out of the quick add

This commit is contained in:
nathangray 2021-03-30 10:12:29 -06:00
parent 0553133bfc
commit d5aacd190d
2 changed files with 9 additions and 2 deletions

View File

@ -478,6 +478,10 @@ egw.extend('links', egw.MODULE_GLOBAL, function()
var apps = self.link_app_list('add');
for(var app in apps)
{
if(egw.link_get_registry(app, 'no_quick_add'))
{
continue;
}
var option = jQuery(document.createElement('option')).attr('value', app)
.text(self.lang(self.link_get_registry(app,'entry') || apps[app]));
select.append(option);

View File

@ -57,7 +57,8 @@ namespace EGroupware\Api;
* ),
* 'add_app' => 'link_app', // name of get parameter to add links to other app
* 'add_id' => 'link_id', // --------------------- " ------------------- id
* 'add_popup' => '400x300', // size of popup (XxY), if add is in popup
* 'add_popup' => '400x300', // size of popup (XxY), if add is in popup
* 'no_quick_add' => false, // App does not want to be in quick add selectbox, defaults to false
* 'notify' => 'app.class.method', // method to be called if an other applications links or unlinks with app: notify(array $data)
* 'file_access' => 'app.class.method', // method to be called to check file access rights of a given user, see links_stream_wrapper class
* // boolean file_access(string $id,int $check,string $rel_path=null,int $user=null)
@ -299,7 +300,7 @@ class Link extends Link\Storage
{
$to_json[$app] = array_intersect_key($data, array_flip(array(
'view','view_id','view_popup',
'add','add_app','add_id','add_popup',
'add','add_app','add_id','add_popup','no_quick_add',
'edit','edit_id','edit_popup',
'list','list_popup',
'name','icon','query',
@ -1156,6 +1157,8 @@ class Link extends Link\Storage
$reg[$name] = $app.'/navbar';
}
break;
case 'quick_add':
$reg[$name] = true;
}
}