source: trunk/www.guidonia.net/wp/wp-content/plugins/tubepress/classes/org/tubepress/ioc/IocService.class.php@ 44

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 1.8 KB
Line 
1<?php
2/**
3 * Copyright 2006, 2007, 2008, 2009 Eric D. Hough (http://ehough.com)
4 *
5 * This file is part of TubePress (http://tubepress.org)
6 *
7 * TubePress is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * TubePress is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with TubePress. If not, see <http://www.gnu.org/licenses/>.
19 *
20 */
21
22/**
23 * Dependency injector for TubePress
24 */
25interface org_tubepress_ioc_IocService
26{
27 const CACHE = 'cacheService';
28 const CAT_PRINTER = 'categoryPrinter';
29 const FEED_INSP = 'feedInspectionService';
30 const FEED_RET = 'feedRetrievalService';
31 const FORM_HNDLER = 'formHandler';
32 const GALLERY = 'gallery';
33 const MESSAGE = 'messageService';
34 const OPTIONS_MGR = 'optionsManager';
35 const PAGINATION = 'paginationService';
36 const QUERY_STR = 'queryStringService';
37 const REFERENCE = 'optionsReference';
38 const SHORTCODE = 'shortcodeService';
39 const STORAGE = 'storageManager';
40 const THUMB = 'thumbnailService';
41 const URL_BUILDER = 'ulrBuilderService';
42 const VALIDATION = 'validationService';
43 const VID_FACT = 'videoFactory';
44 const WIDGET_GALL = 'widgetGallery';
45 const W_PRINTER = 'widgetPrinter';
46
47 public function get($className);
48
49 public function safeGet($firstChoice, $safeChoice);
50}
Note: See TracBrowser for help on using the repository browser.