1: <?php
2: /**
3: * The Ingo_Script_Sieve_Action_Removeflag class represents a remove flag
4: * action.
5: *
6: * See the enclosed file LICENSE for license information (ASL). If you
7: * did not receive this file, see http://www.horde.org/licenses/apache.
8: *
9: * @author Mike Cochrane <mike@graftonhall.co.nz>
10: * @package Ingo
11: */
12: class Ingo_Script_Sieve_Action_Removeflag extends Ingo_Script_Sieve_Action_Flag
13: {
14: /**
15: * Returns a script snippet representing this rule and any sub-rules.
16: *
17: * @return string A Sieve script snippet.
18: */
19: public function toCode()
20: {
21: return $this->_toCode('removeflag');
22: }
23:
24: }
25: