2013-03-10 12:40:11 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ownCloud - Interface for PIM object
|
|
|
|
*
|
|
|
|
* @author Thomas Tanghus
|
2014-01-26 00:40:22 +01:00
|
|
|
* @copyright 2012-2014 Thomas Tanghus (thomas@tanghus.net)
|
2013-03-10 12:40:11 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* 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 AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Contacts;
|
|
|
|
|
|
|
|
/**
|
2014-03-08 16:22:51 +01:00
|
|
|
* Subclass this class or implement IPIMObject interface for PIM objects.
|
2013-03-10 12:40:11 +01:00
|
|
|
*/
|
|
|
|
|
2013-04-25 01:03:05 +02:00
|
|
|
abstract class AbstractPIMObject implements IPIMObject {
|
2013-03-10 12:40:11 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* If this object is part of a collection return a reference
|
|
|
|
* to the parent object, otherwise return null.
|
|
|
|
* @return IPIMObject|null
|
|
|
|
*/
|
2013-05-30 20:52:12 +02:00
|
|
|
public function getParent() {
|
2013-03-25 17:10:21 +01:00
|
|
|
}
|
|
|
|
|
2013-03-10 12:40:11 +01:00
|
|
|
/**
|
|
|
|
* @param integer $permission
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2013-05-30 20:52:12 +02:00
|
|
|
public function hasPermission($permission) {
|
2013-03-10 12:40:11 +01:00
|
|
|
return $this->getPermissions() & $permission;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|