Skip to content
This repository has been archived by the owner on Mar 7, 2024. It is now read-only.

Commit

Permalink
Removed backend menu point and optimized if else condition in ICS tool
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Gerig committed Oct 18, 2018
1 parent 34f7ed4 commit 7ca144a
Show file tree
Hide file tree
Showing 11 changed files with 2 additions and 210 deletions.
35 changes: 0 additions & 35 deletions src/Application/Version.php

This file was deleted.

32 changes: 0 additions & 32 deletions src/Controller/Admin/VersionController.php

This file was deleted.

4 changes: 0 additions & 4 deletions src/Resources/config/pimcore/routing.yml
@@ -1,4 +0,0 @@
# Get bundle version
wvision.admin.version.get_version:
path: /admin/wvision/version/get-version
defaults: { _controller: WvisionBundle:Admin\Version:getVersion }
15 changes: 0 additions & 15 deletions src/Resources/public/pimcore/css/bundle.css

This file was deleted.

1 change: 0 additions & 1 deletion src/Resources/public/pimcore/img/logo.svg

This file was deleted.

1 change: 0 additions & 1 deletion src/Resources/public/pimcore/img/wvision.svg

This file was deleted.

67 changes: 0 additions & 67 deletions src/Resources/public/pimcore/js/global.js

This file was deleted.

33 changes: 0 additions & 33 deletions src/Resources/public/pimcore/js/wvision/helpers.js

This file was deleted.

9 changes: 0 additions & 9 deletions src/Resources/translations/admin.de.yml

This file was deleted.

9 changes: 0 additions & 9 deletions src/Resources/translations/admin.en.yml

This file was deleted.

6 changes: 2 additions & 4 deletions src/Tool/Ics.php
Expand Up @@ -58,10 +58,8 @@ public function set($key, $val = false)
foreach ($key as $k => $v) {
$this->set($k, $v);
}
} else {
if (\in_array($key, self::$availableProperties, true)) {
$this->properties[$key] = $this->sanitizeVal($val, $key);
}
} else if (\in_array($key, self::$availableProperties, true)) {
$this->properties[$key] = $this->sanitizeVal($val, $key);
}
}

Expand Down

0 comments on commit 7ca144a

Please sign in to comment.