1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-28 12:10:52 +02:00
ttrss/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;
}
}
?>