Показывать/не показывать блок в профиле пользователя



Блок будет показан пользователю, когда он находится в своём профиле.

<?php
global $user;
if (
arg(0) == 'user' && $user->uid == arg(1)){
  return
TRUE;
}
else {
  return
FALSE;
}
?>

Блок будет показан пользователю, когда он находится на любой странице, кроме профиля.

<?php
global $user;
if (
arg(0) == 'user' && $user->uid == arg(1)){
  return
FALSE;
}
else {
  return
TRUE;
}
?>

Comments

Post new comment

The content of this field is kept private and will not be shown publicly.
Image CAPTCHA
Copy the characters (respecting upper/lower case) from the image.