Lines Matching refs:entry

89             // Check for both h-feed and h-entry, as both a feed with no entries
92 'contains(concat(" ", @class, " "), " h-entry ")]';
418 // Also look for h-feed or h-entry in the children of each top level item.
430 } elseif (in_array('h-entry', $mf_item['children'][0]['type'])) {
432 // In this case the parent of the h-entry list may be an h-card, so use
453 $entry = $entries[$i];
454 if (in_array('h-entry', $entry['type'])) {
458 if (isset($entry['properties']['url'][0])) {
459 $link = $entry['properties']['url'][0];
465 if (isset($entry['properties']['uid'][0])) {
466 $guid = $entry['properties']['uid'][0];
472 if (isset($entry['properties']['name'][0])) {
473 $title = $entry['properties']['name'][0];
479 if (isset($entry['properties']['author'][0]) || isset($feed_author)) {
483 $author = $entry['properties']['author'][0] ?? $feed_author;
503 // Cache this h-card for the next h-entry to check.
512 if (isset($entry['properties']['photo'][0])) {
515 if (isset($entry['properties']['content'][0]['html'])) {
516 $content = $entry['properties']['content'][0]['html'];
519 for ($j = 0; $j < count($entry['properties']['photo']); $j++) {
520 $photo = $entry['properties']['photo'][$j];
543 if (isset($entry['properties']['content'][0]['html'])) {
547 if ($entry['properties']['content'][0]['value'] === $title) {
548 $title = strip_tags($entry['properties']['content'][0]['html']);
551 $description .= $entry['properties']['content'][0]['html'];
552 if (isset($entry['properties']['in-reply-to'][0])) {
554 if (is_string($entry['properties']['in-reply-to'][0])) {
555 $in_reply_to = $entry['properties']['in-reply-to'][0];
556 } elseif (isset($entry['properties']['in-reply-to'][0]['value'])) {
557 $in_reply_to = $entry['properties']['in-reply-to'][0]['value'];
566 if (isset($entry['properties']['category'])) {
569 foreach ($entry['properties']['category'] as $category) {
582 if (isset($entry['properties']['published'][0])) {
583 $timestamp = strtotime($entry['properties']['published'][0]);
589 if (isset($entry['properties']['deleted'][0])) {