first commit
This commit is contained in:
commit
fb443b4bc7
7 changed files with 845 additions and 0 deletions
34
jp_stuttmann/init.php
Normal file
34
jp_stuttmann/init.php
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?php
|
||||
|
||||
class Jp_Stuttmann extends Plugin {
|
||||
|
||||
function about() {
|
||||
return array(1.0,
|
||||
"Replace to big images in stuttmann-karikaturen.de",
|
||||
"Jeena");
|
||||
}
|
||||
|
||||
function init($host) {
|
||||
$host->add_hook($host::HOOK_ARTICLE_FILTER, $this);
|
||||
}
|
||||
|
||||
function hook_article_filter($article) {
|
||||
|
||||
if (strpos($article["guid"], "www.stuttmann-karikaturen.de") !== FALSE) {
|
||||
if (strpos($article["plugin_data"], "stuttmann,$owner_uid:") === FALSE) {
|
||||
$article["content"] = str_replace("/thumbs/", "/", $article["content"]);
|
||||
$article["plugin_data"] = "stuttmann,$owner_uid:" . $article["plugin_data"];
|
||||
} else if (isset($article["stored"]["content"])) {
|
||||
$article["content"] = $article["stored"]["content"];
|
||||
}
|
||||
}
|
||||
|
||||
return $article;
|
||||
}
|
||||
|
||||
function api_version() {
|
||||
return 2;
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue