Next Tutorial
Drupal 7 Tutorial Part 19: Understanding Drupal 7 Content Types & Fields Concepts !
How to verify current page is Front page in Drupal using code
Hi Drupalers,
Call function drupal_is_front_page() function in drupal to determine current page is home page or any other page.
If it returns true then it is front page, else you are in some other page other than front page / home page.
<?php
$flag = drupal_is_front_page();
if ($flag) {
drupal_set_message("Welcome to front page of this site.");
}
else {
drupal_set_message("Now you are in page other than front page.");
}
?>
©2010 AnilSagar. All rights reserved. Drupal theme by Kiwi Themes.

0 comments
Post new comment