Block display subject to User ID

Category
drupal blocks
Date Created
21st Jan 2011
Last Updated
21st Jan 2011

Block display subject to User ID

Question

How to make a drupal block appear subject to User ID?

Answer

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

Related terms