ullbergm
7 years ago
committed by
GitHub
14 changed files with 108 additions and 18 deletions
@ -0,0 +1,12 @@ |
|||||
|
<?php namespace App\SupportedApps; |
||||
|
|
||||
|
class Booksonic implements Contracts\Applications { |
||||
|
public function defaultColour() |
||||
|
{ |
||||
|
return '#58a'; |
||||
|
} |
||||
|
public function icon() |
||||
|
{ |
||||
|
return 'supportedapps/booksonic.png'; |
||||
|
} |
||||
|
} |
@ -0,0 +1,12 @@ |
|||||
|
<?php namespace App\SupportedApps; |
||||
|
|
||||
|
class LibreNMS implements Contracts\Applications { |
||||
|
public function defaultColour() |
||||
|
{ |
||||
|
return '#e77'; |
||||
|
} |
||||
|
public function icon() |
||||
|
{ |
||||
|
return 'supportedapps/librenms.png'; |
||||
|
} |
||||
|
} |
@ -0,0 +1,12 @@ |
|||||
|
<?php namespace App\SupportedApps; |
||||
|
|
||||
|
class MusicBrainz implements Contracts\Applications { |
||||
|
public function defaultColour() |
||||
|
{ |
||||
|
return '#a0a'; |
||||
|
} |
||||
|
public function icon() |
||||
|
{ |
||||
|
return 'supportedapps/musicbrainz.png'; |
||||
|
} |
||||
|
} |
@ -0,0 +1,12 @@ |
|||||
|
<?php namespace App\SupportedApps; |
||||
|
|
||||
|
class Rancher implements Contracts\Applications { |
||||
|
public function defaultColour() |
||||
|
{ |
||||
|
return '#78c9cf'; |
||||
|
} |
||||
|
public function icon() |
||||
|
{ |
||||
|
return 'supportedapps/rancher.png'; |
||||
|
} |
||||
|
} |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 4.4 KiB |
Loading…
Reference in new issue