ullbergm
7 years ago
committed by
GitHub
12 changed files with 70 additions and 0 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 Headphones implements Contracts\Applications { |
|||
public function defaultColour() |
|||
{ |
|||
return '#185'; |
|||
} |
|||
public function icon() |
|||
{ |
|||
return 'supportedapps/headphones.png'; |
|||
} |
|||
} |
@ -0,0 +1,12 @@ |
|||
<?php namespace App\SupportedApps; |
|||
|
|||
class LazyLibrarian implements Contracts\Applications { |
|||
public function defaultColour() |
|||
{ |
|||
return '#a50'; |
|||
} |
|||
public function icon() |
|||
{ |
|||
return 'supportedapps/lazylibrarian.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'; |
|||
} |
|||
} |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 34 KiB |
Loading…
Reference in new issue