1: <?php
2: /**
3: * This class implements an IMP system flag with matching on a headers object.
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_Header extends IMP_Flag_Base
16: {
17: /**
18: * @param Horde_Mime_Headers $data Headers object for a message.
19: */
20: public function match(Horde_Mime_Headers $data)
21: {
22: return false;
23: }
24:
25: }
26: