diff --git a/pay.field.inc b/pay.field.inc
index 4b25a2d..0debd05 100644
--- a/pay.field.inc
+++ b/pay.field.inc
@@ -8,11 +8,10 @@
  * - Implement formatters that present payment forms or totals/etc on entity view modes.
  *    
  */
-
 /**
  * Implements hook_field_info().
  */
-function pay_field_field_info() {
+function pay_field_info() {
   // @todo finish populating this with pay formatters/widgets rather than text from example.
   return array(
     'pay_form' => array(
@@ -31,8 +30,8 @@ function pay_field_field_info() {
 /**
  * Implements hook_field_settings_form().
  */
-function pay_field_field_settings_form($field, $instance, $has_data) {
-die;
+function pay_field_settings_form($field, $instance, $has_data) {
+  debug('continue here');
   $settings = $field['settings'];
   $form['max_length'] = array(
     '#type' => 'textfield', 
@@ -48,7 +47,7 @@ die;
 /**
  * Implements hook_field_schema().
  */
-function pay_field_field_schema($field = NULL) {
+function pay_field_schema($field = NULL) {
   return array(
     'columns' => array(
       'pfid' => array(
@@ -69,7 +68,7 @@ function pay_field_field_schema($field = NULL) {
 /**
  * Implements hook_field_load().
  */
-function pay_field_field_load($entity_type, $entities, $field, $instances, $langcode, &$items, $age) {
+function pay_field_load($entity_type, $entities, $field, $instances, $langcode, &$items, $age) {
   foreach ($entities as $id => $entity) {
     foreach ($items[$id] as $delta => $item) {
       // @todo finish this.
diff --git a/pay.install b/pay.install
index d1ef364..20dda94 100644
--- a/pay.install
+++ b/pay.install
@@ -480,5 +480,5 @@ function pay_update_7001() {
     }
   }
 
-  return t('Created "%table" table.', array('%table' => $name);
+  return t('Created "%table" table.', array('%table' => $name));
 }
diff --git a/pay.module b/pay.module
index 161fb68..46b95fa 100644
--- a/pay.module
+++ b/pay.module
@@ -6,6 +6,11 @@
  */
 
 /**
+ * This include contains implementations of field hooks. 
+ */
+require_once('pay.field.inc');
+
+/**
  * Implements hook_init().
  */
 function pay_init() {
