]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/Smarty/internals/core.load_resource_plugin.php
Release 6.5.0
[Github/sugarcrm.git] / include / Smarty / internals / core.load_resource_plugin.php
1 <?php
2
3 /*
4
5 Modification information for LGPL compliance
6
7 r56990 - 2010-06-16 13:05:36 -0700 (Wed, 16 Jun 2010) - kjing - snapshot "Mango" svn branch to a new one for GitHub sync
8
9 r56989 - 2010-06-16 13:01:33 -0700 (Wed, 16 Jun 2010) - kjing - defunt "Mango" svn dev branch before github cutover
10
11 r55980 - 2010-04-19 13:31:28 -0700 (Mon, 19 Apr 2010) - kjing - create Mango (6.1) based on windex
12
13 r51719 - 2009-10-22 10:18:00 -0700 (Thu, 22 Oct 2009) - mitani - Converted to Build 3  tags and updated the build system 
14
15 r51634 - 2009-10-19 13:32:22 -0700 (Mon, 19 Oct 2009) - mitani - Windex is the branch for Sugar Sales 1.0 development
16
17 r50375 - 2009-08-24 18:07:43 -0700 (Mon, 24 Aug 2009) - dwong - branch kobe2 from tokyo r50372
18
19 r42807 - 2008-12-29 11:16:59 -0800 (Mon, 29 Dec 2008) - dwong - Branch from trunk/sugarcrm r42806 to branches/tokyo/sugarcrm
20
21 r8230 - 2005-10-03 17:47:19 -0700 (Mon, 03 Oct 2005) - majed - Added Sugar_Smarty to the code tree.
22
23
24 */
25
26
27 /**
28  * Smarty plugin
29  * @package Smarty
30  * @subpackage plugins
31  */
32
33 /**
34  * load a resource plugin
35  *
36  * @param string $type
37  */
38
39 // $type
40
41 function smarty_core_load_resource_plugin($params, &$smarty)
42 {
43     /*
44      * Resource plugins are not quite like the other ones, so they are
45      * handled differently. The first element of plugin info is the array of
46      * functions provided by the plugin, the second one indicates whether
47      * all of them exist or not.
48      */
49
50     $_plugin = &$smarty->_plugins['resource'][$params['type']];
51     if (isset($_plugin)) {
52         if (!$_plugin[1] && count($_plugin[0])) {
53             $_plugin[1] = true;
54             foreach ($_plugin[0] as $_plugin_func) {
55                 if (!is_callable($_plugin_func)) {
56                     $_plugin[1] = false;
57                     break;
58                 }
59             }
60         }
61
62         if (!$_plugin[1]) {
63             $smarty->_trigger_fatal_error("[plugin] resource '" . $params['type'] . "' is not implemented", null, null, __FILE__, __LINE__);
64         }
65
66         return;
67     }
68
69     $_plugin_file = $smarty->_get_plugin_filepath('resource', $params['type']);
70     $_found = ($_plugin_file != false);
71
72     if ($_found) {            /*
73          * If the plugin file is found, it -must- provide the properly named
74          * plugin functions.
75          */
76         include_once($_plugin_file);
77
78         /*
79          * Locate functions that we require the plugin to provide.
80          */
81         $_resource_ops = array('source', 'timestamp', 'secure', 'trusted');
82         $_resource_funcs = array();
83         foreach ($_resource_ops as $_op) {
84             $_plugin_func = 'smarty_resource_' . $params['type'] . '_' . $_op;
85             if (!function_exists($_plugin_func)) {
86                 $smarty->_trigger_fatal_error("[plugin] function $_plugin_func() not found in $_plugin_file", null, null, __FILE__, __LINE__);
87                 return;
88             } else {
89                 $_resource_funcs[] = $_plugin_func;
90             }
91         }
92
93         $smarty->_plugins['resource'][$params['type']] = array($_resource_funcs, true);
94     }
95 }
96
97 /* vim: set expandtab: */
98
99 ?>