Показывать/не показывать блок пользователю



Показывать блок пользователю с UID=1

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

Не показывать блок пользователю с UID=1

<?php
global $user;
if (
$user->uid == 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.