Drupal multi-site and one theme: how to know which multi-site user is on?

381 Views Asked by At

I have drupal multisite installed and atm I have two sites. Both sites uses same theme, but there are few tiny differences between looks of the site (like logo and div/bar is different color). Or well I would that they would have those differences. Now the question is how can I know on theme template that which site is showing up? Is there some paremeter or variable somewhere? Basically so that I could do is simple php if clause (if its this site, show this div and its the other site dnot show it)?

Thanks.

1

There are 1 best solutions below

2
On

In one of my project I had the similar problem. What I did was that in template.php I created the following function:

function mytheme_firstdomain() {
  global $base_url;
  if(strpos($base_url,"http://firstsubdomain.mydomain") !== false) {
    return true;
  }
  return false;
}

And then I could call this in the page.tpl.php code. Like

<?php if(mytheme_firstdomain()) { ?>
   <div>Only for first domain</div>
<?php } else { ?>
   <div>Only for the second domain</div>
<?php } ?>

Otherwise you could look into Block Classes module. That could also help.