KodeStar
7 years ago
committed by
GitHub
9 changed files with 44 additions and 2 deletions
@ -0,0 +1,12 @@ |
|||
|
|||
<?php namespace App\SupportedApps; |
|||
class AirSonic implements Contracts\Applications { |
|||
public function defaultColour() |
|||
{ |
|||
return '#08F'; |
|||
} |
|||
public function icon() |
|||
{ |
|||
return 'supportedapps/airsonic.png'; |
|||
} |
|||
} |
@ -0,0 +1,12 @@ |
|||
|
|||
<?php namespace App\SupportedApps; |
|||
class OpenMediaVault implements Contracts\Applications { |
|||
public function defaultColour() |
|||
{ |
|||
return '#5AF'; |
|||
} |
|||
public function icon() |
|||
{ |
|||
return 'supportedapps/openmediavault.png'; |
|||
} |
|||
} |
@ -0,0 +1,12 @@ |
|||
|
|||
<?php namespace App\SupportedApps; |
|||
class WebTools implements Contracts\Applications { |
|||
public function defaultColour() |
|||
{ |
|||
return '#555'; |
|||
} |
|||
public function icon() |
|||
{ |
|||
return 'supportedapps/webtools.png'; |
|||
} |
|||
} |
After Width: | Height: | Size: 3.9 KiB |
After Width: | Height: | Size: 9.3 KiB |
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 19 KiB |
After Width: | Height: | Size: 52 KiB |
Loading…
Reference in new issue