diff --git a/footer_message.variable.inc b/footer_message.variable.inc
new file mode 100644
index 0000000..ad1e6e5
--- /dev/null
+++ b/footer_message.variable.inc
@@ -0,0 +1,22 @@
+<?php
+
+/**
+* @file
+ *  Set variable info.
+ */
+
+/**
+ * Implements hook_variable_info()
+ */
+function footer_message_variable_info($options) {
+  $variables['footer_message_msg'] = array(
+    'type' => 'string',
+    'title' => t('Site footer', array(), $options),
+    'default' => 'Drupal',
+    'description' => t('The footer of this website.', array(), $options),
+    'group' => 'site_information', 
+    'required' => FALSE,
+  );
+
+  return $variables;
+}
