FreshRSS-Extensions/xExtension-TitleWrap/extension.php
Alexis Degrugillier 26be877e7a Fix extension definitions
Before, extensions were missing the definition of mandatory methods.
At the moment, it's not a problem because the coding guidelines are not
enforced by the code. But in the future, it will break.
Now, extensions have all mandatory method definitions.
2021-01-05 11:31:01 -05:00

18 lines
303 B
PHP

<?php
class TitleWrapExtension extends Minz_Extension {
public function install() {
return true;
}
public function uninstall() {
return true;
}
public function handleConfigureAction() {
}
public function init() {
Minz_View::appendStyle($this->getFileUrl('title_wrap.css', 'css'));
}
}