Index: plugins/content_types/page/page_footer_message.inc
===================================================================
RCS file: plugins/content_types/page/page_footer_message.inc
diff -N plugins/content_types/page/page_footer_message.inc
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ plugins/content_types/page/page_footer_message.inc	15 Sep 2009 01:03:55 -0000
@@ -0,0 +1,36 @@
+<?php
+// $Id$
+
+/**
+ * @file
+ * Plugin to handle the 'page' content type which allows the standard page
+ * template variables to be embedded into a panel.
+ */
+
+/**
+ * Implementation of hook_ctools_content_types()
+ */
+function ctools_page_footer_message_ctools_content_types() {
+  return array(
+    'single' => TRUE,
+    'title' => t('Page footer message'),
+    'icon' => 'icon_page.png',
+    'description' => t('Add the page footer message as content.'),
+    'category' => t('Page elements'),
+  );
+}
+
+/**
+ * Output function for the 'page_footer_message' content type.
+ *
+ * Outputs the page footer message of the current page.
+ */
+function ctools_page_footer_message_content_type_render($subtype, $conf, $panel_args) {
+  $token = '<!-- ctools-page-footer-message -->';
+  ctools_set_page_token($token, 'variable', 'footer_message');
+
+  $block = new stdClass();
+  $block->content = $token;
+
+  return $block;
+}
\ No newline at end of file
