1: <?php
2: /**
3: * The base recipient implementation.
4: *
5: * PHP version 5
6: *
7: * @category Horde
8: * @package Push
9: * @author Gunnar Wrobel <wrobel@pardus.de>
10: * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
11: * @link http://www.horde.org/libraries/Horde_Push
12: */
13:
14: /**
15: * The base recipient implementation.
16: *
17: * Copyright 2011-2012 Horde LLC (http://www.horde.org/)
18: *
19: * See the enclosed file COPYING for license information (LGPL). If you did not
20: * receive this file, see http://www.horde.org/licenses/lgpl21.
21: *
22: * @category Horde
23: * @package Push
24: * @author Gunnar Wrobel <wrobel@pardus.de>
25: * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
26: * @link http://www.horde.org/libraries/Horde_Push
27: */
28: abstract class Horde_Push_Recipient_Base
29: implements Horde_Push_Recipient
30: {
31: /**
32: * The ACL for this recipient.
33: *
34: * @var string
35: */
36: private $_acl;
37:
38: /**
39: * Set the ACL for this recipient.
40: *
41: * @param string $acl The ACL.
42: *
43: * @return NULL
44: */
45: public function setAcl($acl)
46: {
47: $this->_acl = $acl;
48: }
49:
50: /**
51: * Retrieve the ACL setting for this recipient.
52: *
53: * @return string The ACL.
54: */
55: protected function getAcl()
56: {
57: return $this->_acl;
58: }
59: }
60: