Posted By

shrop on 07/07/08


Tagged

drupal


Versions (?)


Advertising

Website Promotion DIRECTORY is a crucial factor for all websites that need to gain better organic search engine rankings and increase website traffic.
Submitting your website as part of your Web Promotion strategy to our SEO friendly and high traffic Business Directory for review is an excellent way to gain a valuable backlink and increase your websites visibility online.

Submit Site


Who likes this?

2 people have marked this snippet as a favorite

basicmagic
DanS42


Drupal Block Visibility: Check UID


Published in: PHP 






URL: http://www.packtpub.com/drupal-5-themes/book

From Drupal 5 Themes book.

Expand | Embed | Plain Text
  1. <?php
  2. global $user;
  3. if ($user->uid == 1){
  4. return TRUE;
  5. }
  6. else {
  7. return FALSE;
  8. }
  9. ?>

Report this snippet 

You need to login to post a comment.