Showing posts with label Applying custom theme using Drupal code. Show all posts
Showing posts with label Applying custom theme using Drupal code. Show all posts

Wednesday, September 14, 2011

Applying custom theme using Drupal code

<?php

/* hook_init() */ 
global $custom_theme;
 if(condition){
          $custom_theme = 'rootcandy';
 }

Followers