Skip to content

Instantly share code, notes, and snippets.

@mrconnerton
Created February 28, 2013 03:07
Show Gist options
  • Save mrconnerton/5053863 to your computer and use it in GitHub Desktop.
Save mrconnerton/5053863 to your computer and use it in GitHub Desktop.
<?php
function mymodule_node_view($node, $view_mode, $langcode) {
if($view_mode == 'full') {
$flag = flag_get_flag('helpercontent');
if ($flag->is_flagged($node->nid)) {
drupal_goto("<front>");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment