host = $host; $host->add_hook($host::HOOK_RENDER_ARTICLE_API, $this); } function hook_render_article_api($row) { $article = isset($row['headline']) ? $row['headline'] : $row['article']; $article['content'] = "
" . $article['content'] . "
"; return $article; } function api_version() { return 2; } }