1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 13:45:56 +00:00
Files
tt-rss/plugins/af_comics/af_comics_template.php

15 lines
206 B
PHP

<?php
class Af_Comics_Template extends Af_ComicFilter {
function supported() {
return array("Example");
}
function process(&$article) {
$owner_uid = $article["owner_uid"];
return false;
}
}
?>