File Manager
<?php
#CMS - CMS Made Simple
#(c)2004 by Ted Kulp (wishy@users.sf.net)
#This project's homepage is: http://www.cmsmadesimple.org
#
#This program is free software; you can redistribute it and/or modify
#it under the terms of the GNU General Public License as published by
#the Free Software Foundation; either version 2 of the License, or
#(at your option) any later version.
#
#This program is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#GNU General Public License for more details.
#You should have received a copy of the GNU General Public License
#along with this program; if not, write to the Free Software
#Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
function smarty_prefilter_precompilefunc($tpl_output, &$template)
{
$smarty = $template->smarty;
$result = explode(':', $smarty->_current_file);
if (count($result) > 1)
{
if( startswith($result[0],'tmp_') ) $result[0] = 'template';
switch ($result[0])
{
case 'stylesheet':
Events::SendEvent('Core','StylesheetPreCompile',array('stylesheet'=>&$tpl_output));
break;
case "content":
Events::SendEvent('Core', 'ContentPreCompile', array('content' => &$tpl_output));
break;
case 'tpl_top':
case 'tpl_body':
case 'tpl_head':
case "template":
Events::SendEvent('Core', 'TemplatePreCompile', array('template' => &$tpl_output,'type'=>$result[0]));
break;
case "globalcontent":
Events::SendEvent('Core', 'GlobalContentPreCompile', array('global_content' => &$tpl_output));
break;
default:
break;
}
}
Events::SendEvent('Core', 'SmartyPreCompile', array('content' => &$tpl_output));
return $tpl_output;
}
?>
File Manager Version 1.0, Coded By Lucas
Email: hehe@yahoo.com