1: <?php
2: /**
3: * This class implements an IMP system flag with matching on addresses.
4: *
5: * Copyright 2011-2012 Horde LLC (http://www.horde.org/)
6: *
7: * See the enclosed file COPYING for license information (GPL). If you
8: * did not receive this file, see http://www.horde.org/licenses/gpl.
9: *
10: * @author Michael Slusarz <slusarz@horde.org>
11: * @category Horde
12: * @license http://www.horde.org/licenses/gpl GPL
13: * @package IMP
14: */
15: abstract class IMP_Flag_System_Match_Address extends IMP_Flag_Base
16: {
17: /**
18: * @param mixed $data Either an array of addresses as returned by
19: * Horde_Mime_Address::getAddressesFromObject() or the
20: * identity that matched the address list.
21: */
22: public function match($data)
23: {
24: return false;
25: }
26:
27: }
28: