1: <?php
2: /**
3: * @category Horde
4: * @package Controller
5: * @author Bob McKee <bob@bluestatedigital.com>
6: * @author James Pepin <james@bluestatedigital.com>
7: * @license http://www.horde.org/licenses/bsd BSD
8: */
9: interface Horde_Controller_RequestConfiguration
10: {
11: public function getControllerName();
12:
13: public function setControllerName($controllerName);
14:
15: public function getSettingsExporterName();
16:
17: public function setSettingsExporterName($settingsName);
18: }
19: