MyBB.de Forum
Funktion: Profil-Besucher - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Sonstiges (https://www.mybb.de/forum/forum-1.html)
+--- Forum: Programmierung (https://www.mybb.de/forum/forum-32.html)
+--- Thema: Funktion: Profil-Besucher (/thread-32924.html)



Funktion: Profil-Besucher - KaSo - 02.12.2015

Hallo,

ich habe ein Plugin installiert und funktioniert einwandfrei. Dies wäre das Plugin: Profil Visitors

Das Plugin funktioniert einwandfrei garkein Problem.

Nun möchte ich eine If-Abfrage einbauen, dass nur in Ihrer eigenen (und nicht von einem anderen Userprofil) Profil-Besucher zu sehen ist.

Dh. ich als User sehe nur meine Profilbesucher und von keinem anderen.

Ist dies leicht mit einer If-Abfrage umsetzbar? Wenn ja, wie muss ich da vorgehen?

Gruß


RE: Funktion: Profil-Besucher - doylecc - 02.12.2015

Ersetze mal in der Pliugindatei

PHP-Code:
eval("\$last_visit = \"".$templates->get("userprofile_lastvisit")."\";"); 

mit

PHP-Code:
$last_visit '';
if (
$memprofile['uid'] == $mybb->user['uid'])
{
    eval("\$last_visit = \"".$templates->get("userprofile_lastvisit")."\";");




RE: Funktion: Profil-Besucher - KaSo - 02.12.2015

Vielen Dank, waldo.