diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-10-06 12:38:59 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-10-17 12:22:26 +0200 |
commit | 93b0f1a3bff98f3b9aa9f2e0ca2db4bc23ca3746 (patch) | |
tree | 69c18c9a69eec1f74fdf4755886ecb7b95e88cdb /lib/repair/assetcache.php | |
parent | 688a141586dad961b24b364e79cd11c1aa343730 (diff) | |
download | nextcloud-server-93b0f1a3bff98f3b9aa9f2e0ca2db4bc23ca3746.tar.gz nextcloud-server-93b0f1a3bff98f3b9aa9f2e0ca2db4bc23ca3746.zip |
adding cssmin and jssmin(minify)
adding argument deleteSelf to rmdirr() - if false the directory itself will not be deleted only it's content
adding repair step to clean the asset cache after upgrade + coding style adjustments
Diffstat (limited to 'lib/repair/assetcache.php')
-rw-r--r-- | lib/repair/assetcache.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/repair/assetcache.php b/lib/repair/assetcache.php new file mode 100644 index 00000000000..d7677a10d11 --- /dev/null +++ b/lib/repair/assetcache.php @@ -0,0 +1,30 @@ +<?php +/** + * Copyright (c) 2014 Thomas Müller <deepdiver@owncloud.com> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Repair; + +use Doctrine\DBAL\Platforms\MySqlPlatform; +use OC\Hooks\BasicEmitter; + +class AssetCache extends BasicEmitter implements \OC\RepairStep { + + public function getName() { + return 'Clear asset cache after upgrade'; + } + + public function run() { + if (!\OC_Template::isAssetPipelineEnabled()) { + $this->emit('\OC\Repair', 'info', array('Asset pipeline disabled -> nothing to do')); + return; + } + $assetDir = \OC::$SERVERROOT . '/assets'; + \OC_Helper::rmdirr($assetDir, false); + $this->emit('\OC\Repair', 'info', array('Asset cache cleared.')); + } +} + |