mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-27 02:14:45 +01:00
W.I.P restructuring of Notifications actions:
- Fix actions of calendar show up for other notifications too
This commit is contained in:
parent
11a0d3b31a
commit
16e92e40aa
@ -176,7 +176,6 @@ class notifications_ajax {
|
||||
* @return boolean true or false
|
||||
*/
|
||||
private function get_egwpopup($browserNotify = false) {
|
||||
$message = '';
|
||||
$rs = $this->db->select(self::_notification_table, '*', array(
|
||||
'account_id' => $this->recipient->account_id,
|
||||
'notify_type' => self::_type
|
||||
@ -184,7 +183,7 @@ class notifications_ajax {
|
||||
__LINE__,__FILE__,false,'',self::_appname);
|
||||
if ($rs->NumRows() > 0) {
|
||||
foreach ($rs as $notification) {
|
||||
$message = null;
|
||||
$actions = null;
|
||||
$data = json_decode($notification['notify_data'], true);
|
||||
if ($data['appname'])
|
||||
{
|
||||
@ -194,23 +193,10 @@ class notifications_ajax {
|
||||
), $data['appname'], true);
|
||||
$actions = $_actions[$data['appname']];
|
||||
}
|
||||
if($browserNotify)
|
||||
{
|
||||
$message = $notification['notify_message'];
|
||||
|
||||
// Check for a link - doesn't work in notification
|
||||
if(strpos($message, lang('Linked entries:')))
|
||||
{
|
||||
$message = substr_replace($message, '', strpos($message, lang('Linked entries:')));
|
||||
}
|
||||
$message2 = preg_replace('#</?a[^>]*>#is','',$message);
|
||||
|
||||
$message3 = 'data:text/html;charset=' . Api\Translation::charset() .';base64,'.base64_encode($message2);
|
||||
}
|
||||
$this->response->apply('app.notifications.append',array(
|
||||
$notification['notify_id'],
|
||||
$notification['notify_message'],
|
||||
$message3,
|
||||
$browserNotify,
|
||||
$notification['notify_status'],
|
||||
$notification['notify_created'],
|
||||
new DateTime(),
|
||||
|
Loading…
Reference in New Issue
Block a user