index.php 552 B

12345678910111213141516171819202122
  1. <?php
  2. /** This file is part of KCFinder project
  3. *
  4. * @desc Join all JavaScript files from current directory
  5. * @package KCFinder
  6. * @version 3.12
  7. * @author Pavel Tzonkov <sunhater@sunhater.com>
  8. * @copyright 2010-2014 KCFinder Project
  9. * @license http://opensource.org/licenses/GPL-3.0 GPLv3
  10. * @license http://opensource.org/licenses/LGPL-3.0 LGPLv3
  11. * @link http://kcfinder.sunhater.com
  12. */
  13. namespace kcfinder;
  14. chdir("..");
  15. require "core/autoload.php";
  16. $min = new minifier("js");
  17. $min->minify("cache/base.js");
  18. ?>