Browse Source
Merge pull request #39 from Futos/openhab
feat: added OpenHAB to supported Apps - Closes #30
pull/40/head^2
KodeStar
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
14 additions and
0 deletions
-
app/Item.php
-
app/SupportedApps/Openhab.php
-
readme.md
-
BIN
storage/app/public/supportedapps/openhab.png
|
@ -31,6 +31,7 @@ class Item extends Model |
|
|
'Mcmyadmin' => \App\SupportedApps\Mcmyadmin::class, |
|
|
'Mcmyadmin' => \App\SupportedApps\Mcmyadmin::class, |
|
|
'NZBGet' => \App\SupportedApps\Nzbget::class, |
|
|
'NZBGet' => \App\SupportedApps\Nzbget::class, |
|
|
'Nextcloud' => \App\SupportedApps\Nextcloud::class, |
|
|
'Nextcloud' => \App\SupportedApps\Nextcloud::class, |
|
|
|
|
|
'Openhab' => \App\SupportedApps\Openhab::class, |
|
|
'Pihole' => \App\SupportedApps\Pihole::class, |
|
|
'Pihole' => \App\SupportedApps\Pihole::class, |
|
|
'Plex' => \App\SupportedApps\Plex::class, |
|
|
'Plex' => \App\SupportedApps\Plex::class, |
|
|
'Plexpy' => \App\SupportedApps\Plexpy::class, |
|
|
'Plexpy' => \App\SupportedApps\Plexpy::class, |
|
|
|
@ -0,0 +1,12 @@ |
|
|
|
|
|
<?php namespace App\SupportedApps; |
|
|
|
|
|
|
|
|
|
|
|
class Openhab implements Contracts\Applications { |
|
|
|
|
|
public function defaultColour() |
|
|
|
|
|
{ |
|
|
|
|
|
return '#b7b7b7'; |
|
|
|
|
|
} |
|
|
|
|
|
public function icon() |
|
|
|
|
|
{ |
|
|
|
|
|
return 'supportedapps/openhab.png'; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
@ -25,6 +25,7 @@ You can use the app to link to any site or application, but Foundation apps will |
|
|
- Mcmyadmin |
|
|
- Mcmyadmin |
|
|
- NZBGet |
|
|
- NZBGet |
|
|
- Nextcloud |
|
|
- Nextcloud |
|
|
|
|
|
- Openhab |
|
|
- Pihole |
|
|
- Pihole |
|
|
- Plex |
|
|
- Plex |
|
|
- Plexpy |
|
|
- Plexpy |
|
|
Width:
|
Height:
|
Size: 17 KiB
|