Browse Source
Merge pull request #37 from Futos/mcmyadmin
feat: added Mcmyadmin as a supported App - Closes #27
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/Mcmyadmin.php
-
readme.md
-
BIN
storage/app/public/supportedapps/mcmyadmin.png
|
@ -28,6 +28,7 @@ class Item extends Model |
|
|
return [ |
|
|
return [ |
|
|
'Duplicati' => \App\SupportedApps\Duplicati::class, |
|
|
'Duplicati' => \App\SupportedApps\Duplicati::class, |
|
|
'Emby' => \App\SupportedApps\Emby::class, |
|
|
'Emby' => \App\SupportedApps\Emby::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, |
|
|
'Pihole' => \App\SupportedApps\Pihole::class, |
|
|
'Pihole' => \App\SupportedApps\Pihole::class, |
|
|
|
@ -0,0 +1,12 @@ |
|
|
|
|
|
<?php namespace App\SupportedApps; |
|
|
|
|
|
|
|
|
|
|
|
class Mcmyadmin implements Contracts\Applications { |
|
|
|
|
|
public function defaultColour() |
|
|
|
|
|
{ |
|
|
|
|
|
return '#30404b'; |
|
|
|
|
|
} |
|
|
|
|
|
public function icon() |
|
|
|
|
|
{ |
|
|
|
|
|
return 'supportedapps/mcmyadmin.png'; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
@ -22,6 +22,7 @@ You can use the app to link to any site or application, but Foundation apps will |
|
|
**Foundation** |
|
|
**Foundation** |
|
|
- Duplicati |
|
|
- Duplicati |
|
|
- Emby |
|
|
- Emby |
|
|
|
|
|
- Mcmyadmin |
|
|
- NZBGet |
|
|
- NZBGet |
|
|
- Nextcloud |
|
|
- Nextcloud |
|
|
- Pihole |
|
|
- Pihole |
|
|
Width:
|
Height:
|
Size: 8.9 KiB
|