1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00

Filter plugins on the plugins menu

This commit is contained in:
DanielnetoDotCom 2020-09-22 17:43:07 -03:00
parent 139e4bad1c
commit 79a3ef4c69
64 changed files with 817 additions and 393 deletions

View file

@ -8,6 +8,12 @@ require_once $global['systemRootPath'] . 'plugin/Plugin.abstract.php';
class DiscordNotify extends PluginAbstract {
public function getTags() {
return array(
PluginTags::$FREE
);
}
public function getDescription() {
return "Send video upload notifications to discord webhook";
}
@ -20,14 +26,6 @@ class DiscordNotify extends PluginAbstract {
return "cf145581-7d5e-4bb6-8c12-848a19j1564g";
}
public function getTags() {
return array(
'free',
'notifications',
'webhook'
);
}
public function getPluginVersion() {
return "1.0";
}