1: <?php
2: /**
3: * Interface for the object that builds a request chain around a controller.
4: *
5: * @category Horde
6: * @package Controller
7: * @author Bob McKee <bob@bluestatedigital.com>
8: * @author James Pepin <james@bluestatedigital.com>
9: * @license http://www.horde.org/licenses/bsd BSD
10: */
11: interface Horde_Controller_SettingsExporter
12: {
13: /**
14: */
15: public function exportBindings(Horde_Injector $injector);
16:
17: /**
18: */
19: public function exportFilters(Horde_Controller_FilterCollection $filters, Horde_Injector $injector);
20: }
21: