9 changed files with 105 additions and 2 deletions
@ -0,0 +1,16 @@ |
|||||
|
<?php namespace App\SupportedApps; |
||||
|
|
||||
|
class Duplicati implements Contracts\Applications { |
||||
|
public function defaultColour() |
||||
|
{ |
||||
|
return '#222'; |
||||
|
} |
||||
|
public function icon() |
||||
|
{ |
||||
|
return 'supportedapps/duplicati.png'; |
||||
|
} |
||||
|
public function configDetails() |
||||
|
{ |
||||
|
return null; |
||||
|
} |
||||
|
} |
@ -0,0 +1,16 @@ |
|||||
|
<?php namespace App\SupportedApps; |
||||
|
|
||||
|
class Emby implements Contracts\Applications { |
||||
|
public function defaultColour() |
||||
|
{ |
||||
|
return '#222'; |
||||
|
} |
||||
|
public function icon() |
||||
|
{ |
||||
|
return 'supportedapps/emby.png'; |
||||
|
} |
||||
|
public function configDetails() |
||||
|
{ |
||||
|
return null; |
||||
|
} |
||||
|
} |
@ -0,0 +1,16 @@ |
|||||
|
<?php namespace App\SupportedApps; |
||||
|
|
||||
|
class Pfsense implements Contracts\Applications { |
||||
|
public function defaultColour() |
||||
|
{ |
||||
|
return '#222'; |
||||
|
} |
||||
|
public function icon() |
||||
|
{ |
||||
|
return 'supportedapps/pfsense.png'; |
||||
|
} |
||||
|
public function configDetails() |
||||
|
{ |
||||
|
return null; |
||||
|
} |
||||
|
} |
@ -0,0 +1,16 @@ |
|||||
|
<?php namespace App\SupportedApps; |
||||
|
|
||||
|
class Pihole implements Contracts\Applications { |
||||
|
public function defaultColour() |
||||
|
{ |
||||
|
return '#222'; |
||||
|
} |
||||
|
public function icon() |
||||
|
{ |
||||
|
return 'supportedapps/pihole.png'; |
||||
|
} |
||||
|
public function configDetails() |
||||
|
{ |
||||
|
return null; |
||||
|
} |
||||
|
} |
@ -0,0 +1,16 @@ |
|||||
|
<?php namespace App\SupportedApps; |
||||
|
|
||||
|
class Portainer implements Contracts\Applications { |
||||
|
public function defaultColour() |
||||
|
{ |
||||
|
return '#222'; |
||||
|
} |
||||
|
public function icon() |
||||
|
{ |
||||
|
return 'supportedapps/portainer.png'; |
||||
|
} |
||||
|
public function configDetails() |
||||
|
{ |
||||
|
return null; |
||||
|
} |
||||
|
} |
@ -0,0 +1,16 @@ |
|||||
|
<?php namespace App\SupportedApps; |
||||
|
|
||||
|
class Unifi implements Contracts\Applications { |
||||
|
public function defaultColour() |
||||
|
{ |
||||
|
return '#222'; |
||||
|
} |
||||
|
public function icon() |
||||
|
{ |
||||
|
return 'supportedapps/unifi.png'; |
||||
|
} |
||||
|
public function configDetails() |
||||
|
{ |
||||
|
return null; |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue