added spaces + curly braces and TODOs for upcoming type-hint rewrite. Please
note that PHP5 allows 'array' as type-hint already (+ interface/class name). Signed-off-by: Roland Haeder <roland@mxchange.org>
This commit is contained in:
parent
61fdc32d2f
commit
c3c9a53364
|
@ -116,7 +116,7 @@ function localize_item(&$item) {
|
||||||
$item['body'] = item_redir_and_replace_images($extracted['body'], $extracted['images'], $item['contact-id']);
|
$item['body'] = item_redir_and_replace_images($extracted['body'], $extracted['images'], $item['contact-id']);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// @Separted ???
|
/// @TODO Separted ???
|
||||||
$xmlhead = "<" . "?xml version='1.0' encoding='UTF-8' ?" . ">";
|
$xmlhead = "<" . "?xml version='1.0' encoding='UTF-8' ?" . ">";
|
||||||
if (activity_match($item['verb'], ACTIVITY_LIKE)
|
if (activity_match($item['verb'], ACTIVITY_LIKE)
|
||||||
|| activity_match($item['verb'], ACTIVITY_DISLIKE)
|
|| activity_match($item['verb'], ACTIVITY_DISLIKE)
|
||||||
|
@ -162,22 +162,19 @@ function localize_item(&$item) {
|
||||||
|
|
||||||
if (activity_match($item['verb'], ACTIVITY_LIKE)) {
|
if (activity_match($item['verb'], ACTIVITY_LIKE)) {
|
||||||
$bodyverb = L10n::t('%1$s likes %2$s\'s %3$s');
|
$bodyverb = L10n::t('%1$s likes %2$s\'s %3$s');
|
||||||
}
|
} elseif (activity_match($item['verb'], ACTIVITY_DISLIKE)) {
|
||||||
elseif (activity_match($item['verb'], ACTIVITY_DISLIKE)) {
|
|
||||||
$bodyverb = L10n::t('%1$s doesn\'t like %2$s\'s %3$s');
|
$bodyverb = L10n::t('%1$s doesn\'t like %2$s\'s %3$s');
|
||||||
}
|
} elseif (activity_match($item['verb'], ACTIVITY_ATTEND)) {
|
||||||
elseif (activity_match($item['verb'], ACTIVITY_ATTEND)) {
|
|
||||||
$bodyverb = L10n::t('%1$s attends %2$s\'s %3$s');
|
$bodyverb = L10n::t('%1$s attends %2$s\'s %3$s');
|
||||||
}
|
} elseif (activity_match($item['verb'], ACTIVITY_ATTENDNO)) {
|
||||||
elseif (activity_match($item['verb'], ACTIVITY_ATTENDNO)) {
|
|
||||||
$bodyverb = L10n::t('%1$s doesn\'t attend %2$s\'s %3$s');
|
$bodyverb = L10n::t('%1$s doesn\'t attend %2$s\'s %3$s');
|
||||||
}
|
} elseif (activity_match($item['verb'], ACTIVITY_ATTENDMAYBE)) {
|
||||||
elseif (activity_match($item['verb'], ACTIVITY_ATTENDMAYBE)) {
|
|
||||||
$bodyverb = L10n::t('%1$s attends maybe %2$s\'s %3$s');
|
$bodyverb = L10n::t('%1$s attends maybe %2$s\'s %3$s');
|
||||||
}
|
}
|
||||||
$item['body'] = sprintf($bodyverb, $author, $objauthor, $plink);
|
|
||||||
|
|
||||||
|
$item['body'] = sprintf($bodyverb, $author, $objauthor, $plink);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (activity_match($item['verb'], ACTIVITY_FRIEND)) {
|
if (activity_match($item['verb'], ACTIVITY_FRIEND)) {
|
||||||
|
|
||||||
if ($item['object-type']=="" || $item['object-type']!== ACTIVITY_OBJ_PERSON) return;
|
if ($item['object-type']=="" || $item['object-type']!== ACTIVITY_OBJ_PERSON) return;
|
||||||
|
@ -304,8 +301,8 @@ function localize_item(&$item) {
|
||||||
$item['body'] = L10n::t('%1$s tagged %2$s\'s %3$s with %4$s', $author, $objauthor, $plink, $tag );
|
$item['body'] = L10n::t('%1$s tagged %2$s\'s %3$s with %4$s', $author, $objauthor, $plink, $tag );
|
||||||
|
|
||||||
}
|
}
|
||||||
if (activity_match($item['verb'], ACTIVITY_FAVORITE)) {
|
|
||||||
|
|
||||||
|
if (activity_match($item['verb'], ACTIVITY_FAVORITE)) {
|
||||||
if ($item['object-type'] == "") {
|
if ($item['object-type'] == "") {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -1611,8 +1608,7 @@ function sort_thr_commented(array $a, array $b)
|
||||||
return strcmp($b['commented'], $a['commented']);
|
return strcmp($b['commented'], $a['commented']);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// @TODO Add type-hint
|
function render_location_dummy(array $item) {
|
||||||
function render_location_dummy($item) {
|
|
||||||
if ($item['location'] != "") {
|
if ($item['location'] != "") {
|
||||||
return $item['location'];
|
return $item['location'];
|
||||||
}
|
}
|
||||||
|
@ -1622,8 +1618,7 @@ function render_location_dummy($item) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// @TODO Add type-hint
|
function get_responses(array $conv_responses, array $response_verbs, $ob, $item) {
|
||||||
function get_responses($conv_responses, $response_verbs, $ob, $item) {
|
|
||||||
$ret = [];
|
$ret = [];
|
||||||
foreach ($response_verbs as $v) {
|
foreach ($response_verbs as $v) {
|
||||||
$ret[$v] = [];
|
$ret[$v] = [];
|
||||||
|
|
Loading…
Reference in a new issue