? panels_node_type.patch
Index: node.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/ctools/plugins/contexts/node.inc,v
retrieving revision 1.7
diff -u -p -r1.7 node.inc
--- node.inc	11 May 2009 23:02:55 -0000	1.7
+++ node.inc	15 May 2009 00:19:16 -0000
@@ -165,6 +165,7 @@ function ctools_context_node_convert_lis
   return array(
     'nid' => t('Node ID'),
     'title' => t('Node title'),
+    'type' => t('Node type'),
     'uid' => t('Author UID'),
   );
 }
@@ -178,6 +179,8 @@ function ctools_context_node_convert($co
       return $context->data->nid;
     case 'title':
       return $context->data->title;
+    case 'type':
+      return $context->data->type;
     case 'uid':
       return $context->data->uid;
   }
