Skip to content
Snippets Groups Projects
Commit d5e71621 authored by Andrew Dolgov's avatar Andrew Dolgov
Browse files

api: add show_content to getHeadlines to allow CDM-styled operation

parent b792cd70
No related branches found
No related tags found
No related merge requests found
......@@ -201,7 +201,8 @@
$limit = (int)db_escape_string($_REQUEST["limit"]);
$filter = db_escape_string($_REQUEST["filter"]);
$is_cat = (bool)db_escape_string($_REQUEST["is_cat"]);
$show_except = (bool)db_escape_string($_REQUEST["show_excerpt"]);
$show_excerpt = (bool)db_escape_string($_REQUEST["show_excerpt"]);
$show_content = (bool)db_escape_string($_REQUEST["show_content"]);
/* do not rely on params below */
......@@ -231,11 +232,15 @@
"feed_id" => $line["feed_id"],
);
if ($show_except) {
if ($show_excerpt) {
$excerpt = truncate_string(strip_tags($line["content_preview"]), 100);
$headline_row["excerpt"] = $excerpt;
}
if ($show_content) {
$headline_row["content"] = $line["content_preview"];
}
array_push($headlines, $headline_row);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment