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

This commit is contained in:
Andrew Dolgov 2009-12-17 13:35:25 +03:00
parent b792cd703a
commit d5e71621fe
1 changed files with 8 additions and 3 deletions

View File

@ -201,7 +201,8 @@
$limit = (int)db_escape_string($_REQUEST["limit"]); $limit = (int)db_escape_string($_REQUEST["limit"]);
$filter = db_escape_string($_REQUEST["filter"]); $filter = db_escape_string($_REQUEST["filter"]);
$is_cat = (bool)db_escape_string($_REQUEST["is_cat"]); $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 */ /* do not rely on params below */
@ -231,11 +232,15 @@
"feed_id" => $line["feed_id"], "feed_id" => $line["feed_id"],
); );
if ($show_except) { if ($show_excerpt) {
$excerpt = truncate_string(strip_tags($line["content_preview"]), 100); $excerpt = truncate_string(strip_tags($line["content_preview"]), 100);
$headline_row["excerpt"] = $excerpt; $headline_row["excerpt"] = $excerpt;
} }
if ($show_content) {
$headline_row["content"] = $line["content_preview"];
}
array_push($headlines, $headline_row); array_push($headlines, $headline_row);
} }