1: <?php
2: /**
3: * The Horde_Kolab_Cli_Module:: interface describes the module structure for
4: * Kolab_Cli.
5: *
6: * PHP version 5
7: *
8: * @category Horde
9: * @package Kolab_Cli
10: * @author Gunnar Wrobel <wrobel@pardus.de>
11: * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
12: * @link http://pear.horde.org/index.php?package=Kolab_Cli
13: */
14:
15: /**
16: * The Horde_Kolab_Cli_Module:: interface describes the module structure for
17: * Kolab_Cli.
18: *
19: * Copyright 2010-2012 Horde LLC (http://www.horde.org/)
20: *
21: * See the enclosed file COPYING for license information (LGPL). If you
22: * did not receive this file, see http://www.horde.org/licenses/lgpl21.
23: *
24: * @category Horde
25: * @package Kolab_Cli
26: * @author Gunnar Wrobel <wrobel@pardus.de>
27: * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
28: * @link http://pear.horde.org/index.php?package=Kolab_Cli
29: */
30: interface Horde_Kolab_Cli_Module
31: extends Horde_Cli_Modular_Module
32: {
33: /**
34: * Handle the options and arguments.
35: *
36: * @param mixed &$options An array of options.
37: * @param mixed &$arguments An array of arguments.
38: * @param array &$world A list of initialized dependencies.
39: *
40: * @return NULL
41: */
42: public function handleArguments(&$options, &$arguments, &$world);
43: }