Guest User

Untitled

a guest
Jul 21st, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. function template_preprocess(&$variables, $hook) {
  2. $access_pages = array('dp/admin', 'user/login', 'user/password');
  3. if (!$variables['is_front'] && !$variables['logged_in'] && !in_array($_GET['q'], $access_pages)) {
  4. drupal_goto('dp/admin');
  5. }
  6. }
Add Comment
Please, Sign In to add comment