Browse Source

feat: added Mcmyadmin as a supported App - Closes #27

pull/37/head
Futos 7 years ago
parent
commit
aa97c8fd3a
  1. 7
      app/Item.php
  2. 12
      app/SupportedApps/Mcmyadmin.php
  3. 5
      readme.md
  4. BIN
      storage/app/public/supportedapps/mcmyadmin.png

7
app/Item.php

@ -28,15 +28,16 @@ class Item extends Model
return [ return [
'Duplicati' => \App\SupportedApps\Duplicati::class, 'Duplicati' => \App\SupportedApps\Duplicati::class,
'Emby' => \App\SupportedApps\Emby::class, 'Emby' => \App\SupportedApps\Emby::class,
'Mcmyadmin' => \App\SupportedApps\Mcmyadmin::class,
'NZBGet' => \App\SupportedApps\Nzbget::class, 'NZBGet' => \App\SupportedApps\Nzbget::class,
'pFsense' => \App\SupportedApps\Pfsense::class, 'Nextcloud' => \App\SupportedApps\Nextcloud::class,
'Pihole' => \App\SupportedApps\Pihole::class, 'Pihole' => \App\SupportedApps\Pihole::class,
'Plex' => \App\SupportedApps\Plex::class, 'Plex' => \App\SupportedApps\Plex::class,
'Plexpy' => \App\SupportedApps\Plexpy::class, 'Plexpy' => \App\SupportedApps\Plexpy::class,
'Portainer' => \App\SupportedApps\Portainer::class, 'Portainer' => \App\SupportedApps\Portainer::class,
'UniFi' => \App\SupportedApps\Unifi::class,
'Nextcloud' => \App\SupportedApps\Nextcloud::class,
'Sabnzbd' => \App\SupportedApps\Sabnzbd::class, 'Sabnzbd' => \App\SupportedApps\Sabnzbd::class,
'UniFi' => \App\SupportedApps\Unifi::class,
'pFsense' => \App\SupportedApps\Pfsense::class,
]; ];
} }
public static function supportedOptions() public static function supportedOptions()

12
app/SupportedApps/Mcmyadmin.php

@ -0,0 +1,12 @@
<?php namespace App\SupportedApps;
class Mcmyadmin implements Contracts\Applications {
public function defaultColour()
{
return '#30404b';
}
public function icon()
{
return 'supportedapps/mcmyadmin.png';
}
}

5
readme.md

@ -22,15 +22,16 @@ You can use the app to link to any site or application, but "Supported" apps wil
**Supported** **Supported**
- Duplicati - Duplicati
- Emby - Emby
- Mcmyadmin
- NZBGet - NZBGet
- Nextcloud - Nextcloud
- pFsense
- Pihole - Pihole
- Plex - Plex
- Plexpy - Plexpy
- Portainer - Portainer
- UniFi
- Sabnzbd - Sabnzbd
- UniFi
- pFsense
## Installing ## Installing
Apart from the Laravel dependencies, namely PHP >= 7.0.0, OpenSSL PHP Extension, PDO PHP Extension, Mbstring PHP Extension, Tokenizer PHP Extension and XML PHP Extension, the only other thing Heimdall needs is sqlite support. Apart from the Laravel dependencies, namely PHP >= 7.0.0, OpenSSL PHP Extension, PDO PHP Extension, Mbstring PHP Extension, Tokenizer PHP Extension and XML PHP Extension, the only other thing Heimdall needs is sqlite support.

BIN
storage/app/public/supportedapps/mcmyadmin.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Loading…
Cancel
Save