-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
49 changed files
with
1,219 additions
and
1,715 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Check Style | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
style: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: 7.4 | ||
- name: Checkout module | ||
uses: actions/checkout@master | ||
- name: Check style | ||
uses: Nall-chan/action-style@master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Run Tests | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout module | ||
uses: actions/checkout@master | ||
with: | ||
submodules: true | ||
- name: Run tests | ||
uses: symcon/action-tests@master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[submodule "tests/stubs"] | ||
path = tests/stubs | ||
url = https://github.com/Nall-chan/SymconStubs | ||
[submodule ".vscode"] | ||
path = .vscode | ||
url = https://github.com/Nall-chan/SymconVSCTasks.git | ||
[submodule ".style"] | ||
path = .style | ||
url = https://github.com/Nall-chan/StylePHP |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
{ | ||
"elements": | ||
[ | ||
{ | ||
"name": "ClientIP", | ||
"type": "ValidationTextBox", | ||
"caption": "Client IP:" | ||
} | ||
] | ||
"elements": [ | ||
{ | ||
"name": "ClientIP", | ||
"type": "ValidationTextBox", | ||
"caption": "Client IP:" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
require_once __DIR__ . '/../libs/NetworkTraits.php'; | ||
|
||
/* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,59 @@ | ||
{ | ||
"elements": | ||
[ | ||
"elements": [ | ||
{ | ||
"name": "Protocol", | ||
"type": "Select", | ||
"caption": "Protocol", | ||
"options": [ | ||
{ | ||
"name": "Protocol", | ||
"type": "Select", | ||
"caption": "Protocol", | ||
"options": [ | ||
{ | ||
"caption": "DHCP", | ||
"value": 0 | ||
}, | ||
{ | ||
"caption": "BOOTP", | ||
"value": 1 | ||
}, | ||
{ | ||
"caption": "DHCP & BOOTP", | ||
"value": 2 | ||
} | ||
] | ||
}, { | ||
"name": "Address", | ||
"type": "ValidationTextBox", | ||
"caption": "MAC Address" | ||
}, { | ||
"name": "Action", | ||
"type": "Select", | ||
"caption": "State", | ||
"options": [ | ||
{ | ||
"caption": "Event (true)", | ||
"value": 0 | ||
}, | ||
{ | ||
"caption": "Impulse (monostabil)", | ||
"value": 1 | ||
}, | ||
{ | ||
"caption": "Toggle (bistabil)", | ||
"value": 2 | ||
} | ||
] | ||
}], | ||
"status": | ||
[ | ||
"caption": "DHCP", | ||
"value": 0 | ||
}, | ||
{ | ||
"caption": "BOOTP", | ||
"value": 1 | ||
}, | ||
{ | ||
"caption": "DHCP & BOOTP", | ||
"value": 2 | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "Address", | ||
"type": "ValidationTextBox", | ||
"caption": "MAC Address" | ||
}, | ||
{ | ||
"name": "Action", | ||
"type": "Select", | ||
"caption": "State", | ||
"options": [ | ||
{ | ||
"caption": "Event (true)", | ||
"value": 0 | ||
}, | ||
{ | ||
"code": 102, | ||
"icon": "active", | ||
"caption": "Mac ok." | ||
"caption": "Impulse (monostabil)", | ||
"value": 1 | ||
}, | ||
{ | ||
"code": 201, | ||
"icon": "error", | ||
"caption": "Mac invalid." | ||
"caption": "Toggle (bistabil)", | ||
"value": 2 | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"status": [ | ||
{ | ||
"code": 102, | ||
"icon": "active", | ||
"caption": "Mac ok." | ||
}, | ||
{ | ||
"code": 201, | ||
"icon": "error", | ||
"caption": "Mac invalid." | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"translations": { | ||
"de": { | ||
"Protocol": "Protokoll", | ||
"MAC Address":"MAC Adresse", | ||
"Action":"Aktion" | ||
} | ||
} | ||
"translations": { | ||
"de": { | ||
"Protocol": "Protokoll", | ||
"MAC Address": "MAC Adresse", | ||
"Action": "Aktion" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.