--- nodesymlinks_old.module	2011-04-11 14:31:00.000000000 +0200
+++ nodesymlinks.module	2011-04-11 14:38:44.000000000 +0200
@@ -109,7 +109,15 @@ function nodesymlinks_page($node, $mid) 
     $output .= theme('nodesymlinks_edit_links', $node->nid);
   }
   // view as a full page
-  $output .= node_view($node, FALSE, TRUE, FALSE);
+  if (module_exists('page_manager')) {
+    // if there exists another handler for the node view use it, otherwise fallback on the drupal core node view
+    include_once(drupal_get_path('module', 'page_manager') . '/plugins/tasks/node_view.inc');
+    $output .= page_manager_node_view($node);
+  }
+  else {
+    // use the drupal core handler for a node view
+    $output .= node_view($node, FALSE, TRUE, FALSE);
+  }
 
   // create breadcrumb based on the menu path
   // NOTE: set breadcrumb *after* node_view() prevents our breadcrumbs to be changed in some other module
