1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 09:49:28 +02:00
Oinktube/plugin/Articles/Articles.php
2022-11-01 15:07:24 -03:00

48 lines
1.6 KiB
PHP

<?php
global $global;
require_once $global['systemRootPath'] . 'plugin/Plugin.abstract.php';
class Articles extends PluginAbstract {
public function getTags() {
return array(
PluginTags::$FREE
);
}
public function getDescription() {
global $global;
$str = "Create rich text articles";
$alert = "";
$dir = $global['systemRootPath'] . 'vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer';
if (!is_writable($dir)) {
$alert = "<div class='alert alert-danger'>Your directory must be writable<br><code>sudo chmod 777 {$dir}</code></div>";
}
return $str.$alert;
}
public function getName() {
return "Articles";
}
public function getUUID() {
return "articles-91db-4357-bb10-ee08b0913778";
}
public function getEmptyDataObject() {
global $global;
$obj = new stdClass();
$obj->allowAttributes = false;
$obj->allowCSS = false;
$obj->allowAllTags = false;
return $obj;
}
public function getPluginMenu() {
global $global;
$btn = '<a href="' . $global['webSiteRootURL'] . 'plugin/Articles/updateDescriptions.php" class="btn btn-default btn-xs btn-block" target="_blank">'.__('Update Old Descriptions').'</a>';
$btn .= '<a href="' . $global['webSiteRootURL'] . 'plugin/Articles/updateDescriptionsRemoveTags.php" class="btn btn-default btn-xs btn-block" target="_blank">'.__('Revert Descriptions to NON-HTML').'</a>';
return $btn;
}
}