summaryrefslogtreecommitdiffstats
path: root/AssetLoader.php
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 12:38:42 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 12:38:42 +0000
commitc3ca98e1b35123f226c7f4c596b5dee78caa4223 (patch)
tree9b6eb109283da55e7d9064baa9fac795a40264cb /AssetLoader.php
parentInitial commit. (diff)
downloadicinga-php-thirdparty-c3ca98e1b35123f226c7f4c596b5dee78caa4223.tar.xz
icinga-php-thirdparty-c3ca98e1b35123f226c7f4c596b5dee78caa4223.zip
Adding upstream version 0.11.0.upstream/0.11.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--AssetLoader.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/AssetLoader.php b/AssetLoader.php
new file mode 100644
index 0000000..b975001
--- /dev/null
+++ b/AssetLoader.php
@@ -0,0 +1,14 @@
+<?php
+
+class AssetLoader
+{
+ public static function update(Composer\Script\Event $event)
+ {
+ if (! is_dir('asset/js/jquery')) {
+ mkdir('asset/js/jquery', 0775, true);
+ }
+
+ copy('vendor/components/jquery/jquery.js', 'asset/js/jquery/jquery.js');
+ copy('vendor/components/jquery/jquery.min.js', 'asset/js/jquery/jquery.min.js');
+ }
+}