Index: colorpicker_cck.module
===================================================================
--- colorpicker_cck.module	(revision 325)
+++ colorpicker_cck.module	(working copy)
@@ -1,7 +1,5 @@
 <?php
 
-// $Id: email.module,v 1.9.2.3 2007/04/17 05:58:31 mh86 Exp $
-
 /**
  * Implementation of hook_help().
  */
@@ -18,7 +16,7 @@
  */
 function colorpicker_cck_field_info() {
   return array(
-    'colorpicker' => array('label' => t('Colorpicker')),
+    'colorpicker' => array('label' => 'Color Picker'),
    );
 }
 
@@ -29,10 +27,9 @@
 function colorpicker_cck_field_settings($op, $field) {
   switch ($op) {
     case 'database columns':
-      $columns = array(
-        'colorpicker' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE),
+      return array(
+        'value' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE),
       );
-      return $columns;
   }
 }
 
@@ -64,309 +61,52 @@
 }
 
 function colorpicker_cck_field_formatter($field, $item, $formatter, $node) {
-  if (empty($item['colorpicker_cck'])) {
+  if (empty($item['value'])) {
     return '';
   }
-  else {
-    if ($field['widget']['link_type'] == 'form' || $formatter == 'contact') {
-      $mailto = l(t('Email Contact Form'), 'email/'.$node->nid.'/'.$field['field_name']);
-    }
-    elseif (($field['widget']['link_type'] == 'mailto_encrypt' || $formatter == 'invisi') && module_exists('invisimail')) {
-      $format = $GLOBALS['invisimail_format'];
-      if (!(variable_get('invisimail_link_'.$format, TRUE))) {     
-        variable_set('invisimail_link_'.$format, TRUE);
-        variable_set('invisimail_js_'.$format, TRUE);
-      }
-      $mailto = invisimail_ascii_encode($item['email']);
-    }
-    else {
-      $mailto =  '<a href="mailto:'. $item['email']. '">'. check_plain($item['email']) .'</a>';
-    }
-    return $output;
-  }
+
+  return check_plain($item['value']);
 }
 
 
 /**
  * Implementation of hook_widget_info().
  */
-function email_widget_info() {
+function colorpicker_cck_widget_info() {
   return array(
-    'email' => array(
-      'label' => t('Textfield'),
-      'field types' => array('email'),
+    'colorpicker' => array(
+      'label' => t('Color picker'),
+      'field types' => array('colorpicker'),
     ),
   );
 }
 
-
 /**
- * Implementation of hook_widget_settings().
- */
-function email_widget_settings($op, $widget) {
-  switch ($op) {
-    case 'form':
-      $form = array();
-      $form['size'] = array(
-        '#type' => 'textfield',
-        '#title' => t('Size'),
-        '#default_value' => isset($widget['size']) ? $widget['size'] : 60,
-        '#required' => FALSE,
-        '#description' => t('Size of textfield'),
-      );
-      
-      $options = array(
-        'mailto' => t('Mailto: Direct link'), 
-        'form' => t('Contact form'), 
-      );
-      if (module_exists('invisimail')) {
-        $options += array('mailto_encrypt' => t('Mailto: Direct link with invisimail encryption'));
-      }
-      $form['link_type'] = array(
-        '#type' => 'radios',
-        '#title' => t('Email Link Type'),
-        '#default_value' => isset($widget['link_type']) ? $widget['link_type'] : 'mailto',
-        '#options' => $options,
-      );
-      
-      return $form;
-      
-    case 'validate':
-      if (!empty($widget['size']) && (!is_numeric($widget['size']) || intval($widget['size']) != $widget['size'] || $widget['size'] <= 0)) {
-        form_set_error('size', t('"Size" must be a positive integer.'));
-      }
-      break;
-
-    case 'save':
-      return array('size', 'link_type');
-  }
-}
-
-
-/**
  * Implementation of hook_widget().
  */
-function email_widget($op, &$node, $field, &$node_field) {
+function colorpicker_cck_widget($op, &$node, $field, &$items) {
   switch ($op) {   
     case 'form':
       $form = array();
-      $form[$field['field_name']] = array(
-        '#tree' => TRUE, 
+      $form[$field['field_name']] = array('#tree' => TRUE);
+      $form[$field['field_name']][0]['value'] = array(
+        '#type' => 'colorpicker',
+        '#title' => t($field['widget']['label']),
+        '#default_value' => isset($items[0]['value']) ? $items[0]['value'] : '#ffffff',
+        '#required' => $field['required'],
+        '#description' => t($field['widget']['description']),
         '#weight' => $field['widget']['weight'],
       );
-      
-      if ($field['multiple']) {
-        $form[$field['field_name']]['#type'] = 'fieldset';
-        $form[$field['field_name']]['#title'] = t($field['widget']['label']);
-        foreach (range(0,2) as $delta) {
-          $default_value = "";
-          if (isset($field['widget']['default_value'][$delta]['email'])) {
-            $default_value = $field['widget']['default_value'][$delta]['email'];
-          }
-          $form[$field['field_name']][$delta]['email'] = array(
-            '#type' => 'textfield',
-            '#title' => '',
-            '#default_value' => isset($node_field[$delta]['email']) ? $node_field[$delta]['email'] : $default_value,
-            '#required' => $field['required'] ? $field['required'] : FALSE,
-            '#maxlength' => 255,
-            '#size' => isset($field['widget']['size']) ? $field['widget']['size'] : 60,
-            '#description' => isset($field['widget']['description']) ? $field['widget']['description'] : '',
-          );
+      return $form;
+
+    case 'process form values':
+      foreach ($items as $delta => $item) {
+        if ($item['value'] == '' && $delta > 0) {
+          unset($items[$delta]); 
         }
       }
-      else {
-        $default_value = "";
-        if (isset($field['widget']['default_value'][0]['email'])) {
-          $default_value = $field['widget']['default_value'][0]['email'];
-        }
-        $form[$field['field_name']][0]['email'] = array(
-          '#type' => 'textfield',
-          '#title' => $field['widget']['label'],
-          '#default_value' => isset($node_field[0]['email']) ? $node_field[0]['email'] : $default_value,
-          '#required' => $field['required'] ? $field['required'] : FALSE,
-          '#maxlength' => 255,
-          '#size' => isset($field['widget']['size']) ? $field['widget']['size'] : 60,
-          '#description' => isset($field['widget']['description']) ? $field['widget']['description'] : '',
-        );
-      }
-      
-      return $form;
-    
-    case 'validate':
-      if (is_array($node_field)) {
-          foreach ($node_field as $delta => $item) {
-            if ($item['email'] != '' && !valid_email_address($item['email'])) {
-              form_set_error($field['field_name'],t('"%mail" is not a valid email address',array('%mail' => $item['email'])));
-            }
-          }
-      }
       break;
+    default:
+      break;
   }           
 }
-
-/**
- * Implementation of hook_menu().
- */
-function email_menu($may_cache) {
-  $items = array();
-
-  if ($may_cache) {
-    $items[] = array('path' => 'email',
-      'title' => t('Email Contact Form'),
-      'callback' => 'email_mail_page',
-      'access' => user_access('access content'),
-      'type' => MENU_CALLBACK,
-    );
-  }
-  return $items;
-}
-
-/**
- * The contact form page.
- */
-function email_mail_page($nid=null, $fieldname=null) {
-  if (empty($nid) || empty($fieldname)) {
-    drupal_not_found();
-    return;
-  }
-  $node = node_load(intval($nid));
-  if (!$node) {
-    drupal_not_found();
-    return;
-  }
-  // Validate field name
-  $types = content_types($node->type);
-  if (!isset($types['fields'][$fieldname]) ||
-      $types['fields'][$fieldname]['type'] != 'email' ||
-      $types['fields'][$fieldname]['widget']['link_type'] != 'form') {
-    drupal_not_found();
-    return;
-  }
-  $field = $node->$fieldname;
-  if (empty($field) || empty($field[0]['email'])) {
-    drupal_not_found();
-    return;
-  }
-
-  if (!flood_is_allowed('email', variable_get('email_hourly_threshold', 3))) {
-    $output = t("You cannot send more than %number messages per hour. Please try again later.", array('%number' => variable_get('email_hourly_threshold', 3)));
-  }
-  else {
-    $output = drupal_get_form('email_mail_page_form');
-  }
-
-  return $output;
-}
-
-function email_mail_page_form() {
-  global $user;
-  
-  if ($user->uid) {
-    $edit['name'] = $user->name;
-    $edit['mail'] = $user->mail;
-  }
-
-  $form['#token'] = $user->name . $user->mail;
-  $form['name'] = array('#type' => 'textfield',
-    '#title' => t('Your name'),
-    '#maxlength' => 255,
-    '#default_value' => $edit['name'],
-    '#required' => TRUE,
-  );
-  $form['mail'] = array('#type' => 'textfield',
-    '#title' => t('Your e-mail address'),
-    '#maxlength' => 255,
-    '#default_value' => $edit['mail'],
-    '#required' => TRUE,
-  );
-  $form['subject'] = array('#type' => 'textfield',
-    '#title' => t('Subject'),
-    '#maxlength' => 255,
-    '#required' => TRUE,
-  );
-  $form['message'] = array('#type' => 'textarea',
-    '#title' => t('Message'),
-    '#required' => TRUE,
-  );
-  $form['submit'] = array('#type' => 'submit',
-    '#value' => t('Send e-mail'),
-  );
-  return $form;
-}
-
-/**
- * Validate the site-wide contact page form submission.
- */
-function email_mail_page_form_validate($form_id, $form_values) {
-  if (!valid_email_address($form_values['mail'])) {
-    form_set_error('mail', t('You must enter a valid e-mail address.'));
-  }
-  if (preg_match("/\r|\n/", $form_values['subject'])) {
-    form_set_error('subject', t('The subject cannot contain linebreaks.'));
-    watchdog('mail', 'Email injection exploit attempted in email form subject: '.check_plain($form_values['subject']), WATCHDOG_NOTICE);
-  }
-}
-
-/**
- * Process the site-wide contact page form submission.
- */
-function email_mail_page_form_submit($form_id, $edit) {
-  $nid = intval(arg(1));
-  $fieldname = arg(2);
-  if (empty($nid) || empty($fieldname)) {
-    drupal_not_found();
-    return;
-  }
-  $node = node_load($nid);
-  if (!$node) {
-    drupal_not_found();
-    return;
-  }
-  // Validate field name
-  $types = content_types($node->type);
-  if (!isset($types['fields'][$fieldname]) ||
-      $types['fields'][$fieldname]['type'] != 'email' ||
-      $types['fields'][$fieldname]['widget']['link_type'] != 'form') {
-    drupal_not_found();
-    return;
-  }
-  $field = $node->$fieldname;
-  if (empty($field) || empty($field[0]['email'])) {
-    drupal_not_found();
-    return;
-  }
-  $email = $field[0]['email'];
-
-  // E-mail address of the sender: as the form field is a text field,
-  // all instances of \r and \n have been automatically stripped from it.
-  $from = $edit['mail'];
-
-  // Compose the body:
-  $message[] = t("%name sent a message using the contact form at %form.", array('%name' => $edit['name'], '%form' => url($_GET['q'], NULL, NULL, TRUE)));
-  $message[] = $edit['message'];
-
-  // Tidy up the body:
-  foreach ($message as $key => $value) {
-    $message[$key] = wordwrap($value);
-  }
-
-  // Format the category:
-  $subject = t('[%title - %contact] %subject', array('%title' => preg_replace("/\r|\n/",'',$node->title), '%contact' => $types['fields'][$fieldname]['widget']['label'], '%subject' => $edit['subject']));
-
-  // Prepare the body:
-  $body = implode("\n\n", $message);
-
-  // Send the e-mail to the recipients:
-  drupal_mail($fieldname, $email, $subject, $body, $from);
-
-  // Log the operation:
-  flood_register_event('email');
-  watchdog('mail', t('%name-from sent an e-mail at %form.', array('%name-from' => theme('placeholder', $edit['name'] ." <$from>"), '%form' => url($_GET['q'], NULL, NULL, TRUE))));
-
-  // Update user:
-  drupal_set_message(t('Your message has been sent.'));
-
-  // Jump to home page rather than back to contact page to avoid contradictory messages if flood control has been activated.
-  return 'node/'.$node->nid;
-}
-?>
\ No newline at end of file
Index: colorpicker_cck.info
===================================================================
--- colorpicker_cck.info	(revision 0)
+++ colorpicker_cck.info	(revision 331)
@@ -0,0 +1,4 @@
+; $Id$
+name = Colorpicker Widget
+description = Adds a color picker widget.
+package = "Colorpicker"
