mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
Implement new link hook view_list, to be able to be taken to a list of entries
This commit is contained in:
parent
721ccb80d8
commit
1524b6670f
@ -32,6 +32,7 @@ class infolog_hooks
|
||||
'action' => 'sp'
|
||||
),
|
||||
'view_id' => 'action_id',
|
||||
'view_list' => 'infolog.infolog_ui.index',
|
||||
'add' => array(
|
||||
'menuaction' => 'infolog.infolog_ui.edit',
|
||||
'type' => 'task'
|
||||
|
@ -545,6 +545,9 @@ class infolog_ui
|
||||
$values['action'] = $action;
|
||||
$values['action_id'] = $action_id;
|
||||
}
|
||||
if($_GET['search']) {
|
||||
$values['nm']['search'] = $_GET['search'];
|
||||
}
|
||||
if ($values['nm']['add'])
|
||||
{
|
||||
$values['add'] = $values['nm']['add'];
|
||||
@ -866,7 +869,7 @@ class infolog_ui
|
||||
if ($content['info_contact'])
|
||||
{
|
||||
$old_link_id = (int)$content['info_link_id'];
|
||||
list($app,$id) = explode(':',$content['info_contact']);
|
||||
list($app,$id) = explode(':',$content['info_contact'], 2);
|
||||
$content['info_link_id'] = (int)($info_link_id = egw_link::link('infolog',$content['link_to']['to_id'],$app,$id));
|
||||
if ($old_link_id && $old_link_id != $content['info_link_id']) egw_link::unlink($old_link_id);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user