mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-02-21 20:20:34 +09:00
supported apps support
This commit is contained in:
16
app/SupportedApps/Duplicati.php
Normal file
16
app/SupportedApps/Duplicati.php
Normal file
@@ -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;
|
||||
}
|
||||
}
|
||||
16
app/SupportedApps/Emby.php
Normal file
16
app/SupportedApps/Emby.php
Normal file
@@ -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;
|
||||
}
|
||||
}
|
||||
@@ -12,7 +12,8 @@ class Nzbget implements Contracts\Applications {
|
||||
}
|
||||
public function configDetails()
|
||||
{
|
||||
return 'nzbget';
|
||||
//return 'nzbget';
|
||||
return null;
|
||||
}
|
||||
|
||||
}
|
||||
16
app/SupportedApps/Pfsense.php
Normal file
16
app/SupportedApps/Pfsense.php
Normal file
@@ -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;
|
||||
}
|
||||
}
|
||||
16
app/SupportedApps/Pihole.php
Normal file
16
app/SupportedApps/Pihole.php
Normal file
@@ -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;
|
||||
}
|
||||
}
|
||||
16
app/SupportedApps/Portainer.php
Normal file
16
app/SupportedApps/Portainer.php
Normal file
@@ -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;
|
||||
}
|
||||
}
|
||||
16
app/SupportedApps/Unifi.php
Normal file
16
app/SupportedApps/Unifi.php
Normal file
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user