You are here

function phone_widget_settings in Phone 5

Same name and namespace in other branches
  1. 6 phone.module \phone_widget_settings()

Implementation of hook_widget_settings().

File

./phone.module, line 127
Defines phone number fields for CCK. Provide some verifications on the phone numbers

Code

function phone_widget_settings($op, $widget) {
  switch ($op) {
    case 'form':
    case 'validate':
      break;

    //do nothing
    case 'save':
      return array();
  }
}