mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-05 04:50:13 +01:00
use now capabilities 'query' and 'add_app' instead of '' and 'add', to be more specific about what's needed
This commit is contained in:
parent
2922950552
commit
be12e577e9
@ -203,7 +203,7 @@
|
|||||||
return True;
|
return True;
|
||||||
|
|
||||||
case 'link-add':
|
case 'link-add':
|
||||||
$apps = $this->link->app_list($type == 'link-add' ? 'add' : '');
|
$apps = $this->link->app_list($type == 'link-add' ? 'add_app' : 'query');
|
||||||
if (!$apps || !$value['to_id'] || is_array($value['to_id'])) // cant do an add without apps or already created entry
|
if (!$apps || !$value['to_id'] || is_array($value['to_id'])) // cant do an add without apps or already created entry
|
||||||
{
|
{
|
||||||
$cell = $tmpl->empty_cell();
|
$cell = $tmpl->empty_cell();
|
||||||
@ -264,7 +264,7 @@
|
|||||||
$extension_data = $value;
|
$extension_data = $value;
|
||||||
}
|
}
|
||||||
$value = array_merge($extension_data,$value);
|
$value = array_merge($extension_data,$value);
|
||||||
$value['options-app'] = $this->link->app_list();
|
$value['options-app'] = $this->link->app_list('query');
|
||||||
asort($value['options-app']); // sort them alphabetic
|
asort($value['options-app']); // sort them alphabetic
|
||||||
|
|
||||||
$tpl =& new etemplate('etemplate.link_widget.search');
|
$tpl =& new etemplate('etemplate.link_widget.search');
|
||||||
@ -380,7 +380,7 @@
|
|||||||
{
|
{
|
||||||
$tpl->set_cell_attribute('app','type','select');
|
$tpl->set_cell_attribute('app','type','select');
|
||||||
$tpl->set_cell_attribute('app','no_lang',true);
|
$tpl->set_cell_attribute('app','no_lang',true);
|
||||||
$apps = $this->link->app_list();
|
$apps = $this->link->app_list('query');
|
||||||
asort($apps); // sort them alphabetic
|
asort($apps); // sort them alphabetic
|
||||||
foreach($apps as $app => $label)
|
foreach($apps as $app => $label)
|
||||||
{
|
{
|
||||||
@ -391,7 +391,7 @@
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 'link-apps':
|
case 'link-apps':
|
||||||
$apps = $this->link->app_list($cell['size']);
|
$apps = $this->link->app_list($cell['size'] ? $cell['size'] : 'query');
|
||||||
if (!$apps) // cant do an add without apps or already created entry
|
if (!$apps) // cant do an add without apps or already created entry
|
||||||
{
|
{
|
||||||
$cell = $tmpl->empty_cell();
|
$cell = $tmpl->empty_cell();
|
||||||
|
Loading…
Reference in New Issue
Block a user