[ Index ] |
PHP Cross Reference of vtigercrm-6.1.0 |
[Summary view] [Print] [Text view]
1 <?php 2 3 /** This file is part of KCFinder project 4 * 5 * @desc Join all JavaScript files in current directory 6 * @package KCFinder 7 * @version 2.21 8 * @author Pavel Tzonkov <[email protected]> 9 * @copyright 2010 KCFinder Project 10 * @license http://www.opensource.org/licenses/gpl-2.0.php GPLv2 11 * @license http://www.opensource.org/licenses/lgpl-2.1.php LGPLv2 12 * @link http://kcfinder.sunhater.com 13 */ 14 15 chdir(".."); // For compatibality 16 chdir(".."); 17 require "lib/helper_httpCache.php"; 18 $files = glob("js/browser/*.js"); 19 20 foreach ($files as $file) { 21 $fmtime = filemtime($file); 22 if (!isset($mtime) || ($fmtime > $mtime)) 23 $mtime = $fmtime; 24 } 25 26 httpCache::checkMTime($mtime); 27 28 header("Content-Type: text/javascript"); 29 foreach ($files as $file) 30 require $file; 31 32 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 20:08:37 2014 | Cross-referenced by PHPXref 0.7.1 |