summaryrefslogtreecommitdiff
path: root/init.php
diff options
context:
space:
mode:
Diffstat (limited to 'init.php')
-rw-r--r--init.php8
1 files changed, 1 insertions, 7 deletions
diff --git a/init.php b/init.php
index a60537f..5db5b0d 100644
--- a/init.php
+++ b/init.php
@@ -105,7 +105,6 @@ class Api_Resize_Media extends Plugin {
}
}
- /** @noinspection PhpUnused */
public function api_resize() {
$url = validate_url($_REQUEST["url"]);
@@ -304,7 +303,6 @@ class Api_Resize_Media extends Plugin {
return $article;
}
- /** @noinspection PhpUnused */
function hook_article_image($enclosures, $content, $site_url) {
$width = (int) clean($_REQUEST["resize_width"] ?? 0);
@@ -313,7 +311,6 @@ class Api_Resize_Media extends Plugin {
return ["", "", $article["content"]];
}
- /** @noinspection PhpUnused */
function hook_enclosure_entry($enc) {
$force_width = (int) $this->host->get($this, "force_width", 0);
@@ -322,23 +319,20 @@ class Api_Resize_Media extends Plugin {
return $enc;
}
- /** @noinspection PhpUnused */
function hook_render_article_cdm($row) {
$force_width = (int) $this->host->get($this, "force_width", 0);
return $this->process_article(["article" => $row], $force_width);
}
- /** @noinspection PhpUnused */
function hook_render_article($row) {
$force_width = (int) $this->host->get($this, "force_width", 0);
return $this->process_article(["article" => $row], $force_width);
}
- /** @noinspection PhpUnused */
function hook_render_article_api($row) {
- $width = (int) clean($_REQUEST["resize_width"]);
+ $width = (int) clean($_REQUEST["resize_width"] ?? 0);
return $this->process_article($row, $width);
}