]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/Smarty/plugins/function.sugar_getimagepath.php
Release 6.5.0
[Github/sugarcrm.git] / include / Smarty / plugins / function.sugar_getimagepath.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 r40349 - 2008-10-07 12:27:23 -0700 (Tue, 07 Oct 2008) - jmertic - Changes for Iteration 1 of the Themes Improvements:
22 - Added SugarTheme and SugarThemeRegistry objects, updating everywhere in the app to use them.
23 - Converted the Sugar Theme to the new style, which involved:
24  - moved all PHP and HTML out of the themes, into SugarView or the include/utils/layout_utils.php directory.
25  - all images in the images/ directory and all css in the css/ directory.
26  - removed config.php and replaced it with themedef.php.
27
28 r33134 - 2008-03-21 04:51:32 -0700 (Fri, 21 Mar 2008) - majed - templating changes
29
30 r32836 - 2008-03-14 16:48:48 -0700 (Fri, 14 Mar 2008) - majed - adds smarty functions
31
32
33 */
34
35
36 /**
37  * Smarty plugin
38  * @package Smarty
39  * @subpackage plugins
40  */
41
42
43 /**
44  * Smarty {sugar_include} function plugin
45  *
46  * Type:     function<br>
47  * Name:     sugar_include<br>
48  * Purpose:  Handles rendering the global file includes from the metadata files defined
49  *           in templateMeta=>includes.
50  * 
51  * @author Collin Lee {clee@sugarcrm.com}
52  * @param array
53  * @param Smarty
54  */
55 function smarty_function_sugar_getimagepath($params, &$smarty)
56 {
57         if(!isset($params['file'])) {
58                    $smarty->trigger_error($GLOBALS['app_strings']['ERR_MISSING_REQUIRED_FIELDS'] . 'file');
59         }
60         return SugarThemeRegistry::current()->getImageURL($params['file']);
61 }
62 ?>