Skip to content
This repository was archived by the owner on Jul 26, 2022. It is now read-only.

Commit 47754ba

Browse files
author
Moritz Walter
committed
Initial Project
1 parent 6a1b2a5 commit 47754ba

File tree

15 files changed

+188
-230
lines changed

15 files changed

+188
-230
lines changed

.gitignore

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
.idea/
2-
*.iml
2+
.idea/*
3+
vendor/
4+
vendor/*
5+
6+
composer.lock
7+
composer.phar
8+
9+
config/config.php
310

4-
dependency-reduced-pom.xml

README.md

Lines changed: 34 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,36 @@
1-
# PLUGIN / WEBINTERFACE IST NICHT FERTIG GESTELLT.
2-
# DIE ENTWICKLUNG WURDE BIS AUF WEITERES EINGESTELLT.
1+
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
2+
[![Discord](https://img.shields.io/discord/340197684688453632.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/CYHuDpx)
3+
<br>
34

5+
<img src="https://cdn.the-systems.eu/icon-transparent-banner.png" width="300px" />
46

5-
<img src="https://the-systems.eu/images/favicons/apple-touch-icon.png" width="60px" />
7+
# <b>CloudNet3-Webinterface</b>
68

7-
# CloudNet3-Webinterface
8-
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
9+
### A Webinterface for CloudNet 3.4+
10+
11+
### <span style="color: red">The web interface is not compatible with CloudNet v2!</span>
12+
13+
## Installation
14+
15+
#### You can find more information about the installation in the [INSTALL.md](./INSTALL.md) file.
16+
17+
## Updating
918

10-
#### Info
19+
#### You can find more information about updating in the [UPDATE.md](./UPDATE.md) file.
1120

12-
A Webinterface for CloudNet v3
21+
## Projectpage
1322

14-
#### Projectpage
23+
#### https://project.the-systems.eu/resources/cloudnet3-webinterface
1524

16-
https://project.the-systems.eu/resources/cloudnet3-webinterface
25+
## Support
1726

18-
#### License
27+
- via Discord: https://discord.gg/DbahAcW
28+
- via Github-Issue: https://github.com/The-Systems/CloudNet3-Webinterface/issues
29+
- via E-Mail to moritz.walter@the-systems.eu
1930

20-
Copyright 2020 TheSystems
31+
## License
32+
33+
Copyright 2021 TheSystems
2134

2235
Licensed under the Apache License, Version 2.0 (the "License");
2336
you may not use this file except in compliance with the License.
@@ -30,4 +43,13 @@ https://project.the-systems.eu/resources/cloudnet3-webinterface
3043
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3144
See the License for the specific language governing permissions and
3245
limitations under the License.
33-
46+
47+
## Contributors
48+
49+
<a href="https://github.com/The-Systems/CloudNet3-Webinterface/graphs/contributors">
50+
<img src="https://contrib.rocks/image?repo=The-Systems/CloudNet3-Webinterface" alt="Contributors"/>
51+
</a>
52+
53+
<br>
54+
55+
### thank you, for using our software.

composer.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "the-systems/cloudnet3-webinterface",
3+
"description": "a webinterface for cloudnet3 by the-systems",
4+
"minimum-stability": "stable",
5+
"license": "proprietary",
6+
"authors": [
7+
{
8+
"name": "Moritz Walter",
9+
"email": "moritz.walter@the-systems.eu"
10+
}
11+
],
12+
"require": {
13+
"nezamy/route": "*",
14+
"ext-curl": "*"
15+
},
16+
"autoload": {
17+
"psr-4": {
18+
"webinterface\\": "src/webinterface/"
19+
}
20+
}
21+
}

config/config-sample.php

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
3+
$config = array(
4+
"url" => array(
5+
"main" => "www.domain.de",
6+
"ssl" => "https://",
7+
"pfad" => "",
8+
"without_sub" => "domain.de",
9+
"force" => "true",
10+
),
11+
"cloudnet" => array(
12+
"protocol" => "http://",
13+
"ip" => "",
14+
"port" => "",
15+
"path" => "/api/v2",
16+
),
17+
18+
"name" => "CloudNet3 Webinterface",
19+
20+
);

config/messages.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

config/version.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?php
2+
$version = array(
3+
"version" => "1.0_alpha1",
4+
"version_url" => "https://project.the-systems.eu/api/resource/?resourceid=14&type=allinfos"
5+
);

core/pom.xml

Lines changed: 0 additions & 27 deletions
This file was deleted.

core/src/main/java/eu/thesystems/cloudnet/webinterface/CloudNetWebInterface.java

Lines changed: 0 additions & 41 deletions
This file was deleted.

core/src/main/java/eu/thesystems/cloudnet/webinterface/module/WIExtension.java

Lines changed: 0 additions & 34 deletions
This file was deleted.

core/src/main/java/eu/thesystems/cloudnet/webinterface/module/WIExtensionElement.java

Lines changed: 0 additions & 73 deletions
This file was deleted.

0 commit comments

Comments
 (0)