0byt3m1n1
Path:
/
data
/
applications
/
aps
/
phprojekt
/
6.0.6-0
/
standard
/
htdocs
/
application
/
Todo
/
Models
/
[
Home
]
File: Notification.php
<?php /** * Notification class for Todo model. * * This software is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 3 as published by the Free Software Foundation * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * @category PHProjekt * @package Application * @subpackage Todo * @copyright Copyright (c) 2010 Mayflower GmbH (http://www.mayflower.de) * @license LGPL v3 (See LICENSE file) * @link http://www.phprojekt.com * @since File available since Release 6.0 * @version Release: 6.0.6 * @author Mariano La Penna <mariano.lapenna@mayflower.de> */ /** * Notification class for Todo model. * * @category PHProjekt * @package Application * @subpackage Todo * @copyright Copyright (c) 2010 Mayflower GmbH (http://www.mayflower.de) * @license LGPL v3 (See LICENSE file) * @link http://www.phprojekt.com * @since File available since Release 6.0 * @version Release: 6.0.6 * @author Mariano La Penna <mariano.lapenna@mayflower.de> */ class Todo_Models_Notification extends Phprojekt_Notification { /** * Returns the recipients for this Todo item. * * @return array Array with user IDs. */ public function getTo() { $userId = Phprojekt_Auth::getUserId(); // Gets only the recipients with at least a 'read' right. $recipients = parent::getTo(); // Assigned user if (!empty($this->_model->userId) && $this->_model->userId != $userId) { $recipients[] = $this->_model->userId; } // Owner user if (!empty($this->_model->userId) && $this->_model->ownerId != $userId) { $recipients[] = $this->_model->ownerId; } // If the item has been reassigned, add the previous assigned user to the recipients $history = Phprojekt_Loader::getLibraryClass('Phprojekt_History'); $olUser = $history->getLastAssignedUser($this->_model, 'userId'); if ($olUser > 0) { $recipients[] = $olUser; } // Return without duplicates return array_unique($recipients); } }