cheesemarathon
7 years ago
9 changed files with 52 additions and 0 deletions
@ -0,0 +1,12 @@ |
|||
<?php namespace App\SupportedApps; |
|||
|
|||
class HomeAssistant implements Contracts\Applications { |
|||
public function defaultColour() |
|||
{ |
|||
return '#28D'; |
|||
} |
|||
public function icon() |
|||
{ |
|||
return 'supportedapps/homeassistant.png'; |
|||
} |
|||
} |
@ -0,0 +1,12 @@ |
|||
<?php namespace App\SupportedApps; |
|||
|
|||
class Jackett implements Contracts\Applications { |
|||
public function defaultColour() |
|||
{ |
|||
return '#AA5'; |
|||
} |
|||
public function icon() |
|||
{ |
|||
return 'supportedapps/jackett.png'; |
|||
} |
|||
} |
@ -0,0 +1,12 @@ |
|||
<?php namespace App\SupportedApps; |
|||
|
|||
class Radarr implements Contracts\Applications { |
|||
public function defaultColour() |
|||
{ |
|||
return '#AA5'; |
|||
} |
|||
public function icon() |
|||
{ |
|||
return 'supportedapps/radarr.png'; |
|||
} |
|||
} |
@ -0,0 +1,12 @@ |
|||
<?php namespace App\SupportedApps; |
|||
|
|||
class Sonarr implements Contracts\Applications { |
|||
public function defaultColour() |
|||
{ |
|||
return '#5AF'; |
|||
} |
|||
public function icon() |
|||
{ |
|||
return 'supportedapps/sonarr.png'; |
|||
} |
|||
} |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 7.2 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 48 KiB |
Loading…
Reference in new issue