You are here

function instagram_feeds_node_view in Instagram Feeds 7

Implements hook_node_view().

File

./instagram_feeds.module, line 1412

Code

function instagram_feeds_node_view($node, $view_mode, $langcode) {
  $args = arg();
  if (INSTAGRAM_FEEDS_SETTINGS_NODE_TYPE == $node->type && 'node' == $args[0] && count($args) <= 2) {
    drupal_goto('node/' . $node->nid . '/edit');
  }
}