Browse Source

Merge pull request #145 from halorrr/master

SupportedApp: WebTools
pull/146/head^2
KodeStar 7 years ago
committed by GitHub
parent
commit
793483b6e9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      app/Item.php
  2. 12
      app/SupportedApps/WebTools.php
  3. 1
      readme.md
  4. BIN
      storage/app/public/supportedapps/webtools.png

1
app/Item.php

@ -66,6 +66,7 @@ class Item extends Model
'UniFi' => \App\SupportedApps\Unifi::class, 'UniFi' => \App\SupportedApps\Unifi::class,
'pFsense' => \App\SupportedApps\Pfsense::class, 'pFsense' => \App\SupportedApps\Pfsense::class,
'ruTorrent' => \App\SupportedApps\ruTorrent::class, 'ruTorrent' => \App\SupportedApps\ruTorrent::class,
'WebTools' => \App\SupportedApps\WebTools::class,
]; ];
} }
public static function supportedOptions() public static function supportedOptions()

12
app/SupportedApps/WebTools.php

@ -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';
}
}

1
readme.md

@ -66,6 +66,7 @@ You can use the app to link to any site or application, but Foundation apps will
- UniFI - UniFI
- pfSense - pfSense
- rTorrent/ruTorrent - rTorrent/ruTorrent
- WebTools
## 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/webtools.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Loading…
Cancel
Save