New functionality to display media posted by a contact
This commit is contained in:
parent
de2352e34d
commit
1979b4775d
|
@ -280,7 +280,7 @@ class Contact extends BaseModule
|
||||||
$contact = null;
|
$contact = null;
|
||||||
// @TODO: Replace with parameter from router
|
// @TODO: Replace with parameter from router
|
||||||
if (DI::args()->getArgc() == 2 && intval(DI::args()->getArgv()[1])
|
if (DI::args()->getArgc() == 2 && intval(DI::args()->getArgv()[1])
|
||||||
|| DI::args()->getArgc() == 3 && intval(DI::args()->getArgv()[1]) && in_array(DI::args()->getArgv()[2], ['posts', 'conversations'])
|
|| DI::args()->getArgc() == 3 && intval(DI::args()->getArgv()[1]) && in_array(DI::args()->getArgv()[2], ['posts', 'conversations', 'media'])
|
||||||
) {
|
) {
|
||||||
$contact_id = intval(DI::args()->getArgv()[1]);
|
$contact_id = intval(DI::args()->getArgv()[1]);
|
||||||
|
|
||||||
|
@ -307,7 +307,7 @@ class Contact extends BaseModule
|
||||||
if (DBA::isResult($contact)) {
|
if (DBA::isResult($contact)) {
|
||||||
if ($contact['self']) {
|
if ($contact['self']) {
|
||||||
// @TODO: Replace with parameter from router
|
// @TODO: Replace with parameter from router
|
||||||
if ((DI::args()->getArgc() == 3) && intval(DI::args()->getArgv()[1]) && in_array(DI::args()->getArgv()[2], ['posts', 'conversations'])) {
|
if ((DI::args()->getArgc() == 3) && intval(DI::args()->getArgv()[1]) && in_array(DI::args()->getArgv()[2], ['posts', 'conversations', 'media'])) {
|
||||||
DI::baseUrl()->redirect('profile/' . $contact['nick']);
|
DI::baseUrl()->redirect('profile/' . $contact['nick']);
|
||||||
} else {
|
} else {
|
||||||
DI::baseUrl()->redirect('profile/' . $contact['nick'] . '/profile');
|
DI::baseUrl()->redirect('profile/' . $contact['nick'] . '/profile');
|
||||||
|
@ -375,6 +375,10 @@ class Contact extends BaseModule
|
||||||
return self::getPostsHTML($a, $contact_id);
|
return self::getPostsHTML($a, $contact_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($cmd === 'media') {
|
||||||
|
return self::getPostsHTML($a, $contact_id); // TODO
|
||||||
|
}
|
||||||
|
|
||||||
if ($cmd === 'conversations') {
|
if ($cmd === 'conversations') {
|
||||||
return self::getConversationsHMTL($a, $contact_id, $update);
|
return self::getConversationsHMTL($a, $contact_id, $update);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue