]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/Smarty/internals/core.rm_auto.php
Release 6.5.0
[Github/sugarcrm.git] / include / Smarty / internals / core.rm_auto.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  * delete an automagically created file by name and id
35  *
36  * @param string $auto_base
37  * @param string $auto_source
38  * @param string $auto_id
39  * @param integer $exp_time
40  * @return boolean
41  */
42
43 // $auto_base, $auto_source = null, $auto_id = null, $exp_time = null
44
45 function smarty_core_rm_auto($params, &$smarty)
46 {
47     if (!@is_dir($params['auto_base']))
48       return false;
49
50     if(!isset($params['auto_id']) && !isset($params['auto_source'])) {
51         $_params = array(
52             'dirname' => $params['auto_base'],
53             'level' => 0,
54             'exp_time' => $params['exp_time']
55         );
56         require_once(SMARTY_CORE_DIR . 'core.rmdir.php');
57         $_res = smarty_core_rmdir($_params, $smarty);
58     } else {
59         $_tname = $smarty->_get_auto_filename($params['auto_base'], $params['auto_source'], $params['auto_id']);
60
61         if(isset($params['auto_source'])) {
62             if (isset($params['extensions'])) {
63                 $_res = false;
64                 foreach ((array)$params['extensions'] as $_extension)
65                     $_res |= $smarty->_unlink($_tname.$_extension, $params['exp_time']);
66             } else {
67                 $_res = $smarty->_unlink($_tname, $params['exp_time']);
68             }
69         } elseif ($smarty->use_sub_dirs) {
70             $_params = array(
71                 'dirname' => $_tname,
72                 'level' => 1,
73                 'exp_time' => $params['exp_time']
74             );
75             require_once(SMARTY_CORE_DIR . 'core.rmdir.php');
76             $_res = smarty_core_rmdir($_params, $smarty);
77         } else {
78             // remove matching file names
79             $_handle = opendir($params['auto_base']);
80             $_res = true;
81             while (false !== ($_filename = readdir($_handle))) {
82                 if($_filename == '.' || $_filename == '..') {
83                     continue;
84                 } elseif (substr($params['auto_base'] . DIRECTORY_SEPARATOR . $_filename, 0, strlen($_tname)) == $_tname) {
85                     $_res &= (bool)$smarty->_unlink($params['auto_base'] . DIRECTORY_SEPARATOR . $_filename, $params['exp_time']);
86                 }
87             }
88         }
89     }
90
91     return $_res;
92 }
93
94 /* vim: set expandtab: */
95
96 ?>