'Taxonomy Term', // 'type' => MENU_LOCAL_TASK, // 'access callback' => 'tode_node_tab_access', // 'access arguments' => array(2), // 'page callback' => 'tode_tab_page', // 'page arguments' => array(2), // 'file' => 'tode.pages.inc', // 'weight' => 2, // ); return $items; } /** * Implementation of hook_theme(). */ function tode_theme() { return array( 'tode' => array( 'arguments' => array('element' => NULL), ), ); } /** * Implementation of hook_init(). */ function tode_init() { // File hooks and callbacks may be used by any module. drupal_add_css(drupal_get_path('module', 'tode') .'/tode.css'); } /** * Implementation of hook_field_widget_info(). */ # BUG PLUS function tode_field_widget_info() { return array( 'tode' => array( 'label' => t('Create update/change'), 'field types' => array('taxonomy_term_reference'), 'behaviors' => array( 'multiple values' => FIELD_BEHAVIOR_DEFAULT, 'default value' => FIELD_BEHAVIOR_NONE, ), 'settings' => array( 'size' => 60, 'show_term_form'=> 0, 'maxlength'=> 255, ), ), ); # from taxonomy // return array( // 'taxonomy_autocomplete' => array( // 'label' => t('Autocomplete term widget (tagging)'), // 'field types' => array('taxonomy_term_reference'), // 'settings' => array( // 'size' => 60, // 'autocomplete_path' => 'taxonomy/autocomplete', // ), // 'behaviors' => array( // 'multiple values' => FIELD_BEHAVIOR_CUSTOM, // ), // ), // ); // } /** * Implementation of hook_widget_settings */ #hook_field_widget_settings_form($field, $instance) function tode_field_widget_settings_form($field, $instance){ dsm($instance, 'tode_field_widget_settings_form : $instance'); dsm($field, 'field'); $widget = $instance['widget']; $settings = $widget['settings']; $form['tode'] = array( '#type' => 'fieldset', '#title' => t('Settings for terms'), '#collapsible' => TRUE, '#weight' => 10, '#description' => t('First time this field will be used, it will create a new term with the value inserted in the textfield, after that, the term (tid) will always be the same, just update term name by updating the value of the field. You can keep synchronized a fixe term with a node, you can set an auto title from this field, The required, number of value at 1 and term_node synch of global field are required'), ); $form['tode']['maxlength'] = array( '#type' => 'textfield', '#title' => t('Maximum length of term'), '#default_value' => $settings['maxlength'], '#element_validate' => array('_tode_widget_settings_maxlength_validate'), '#required' => TRUE, '#description' => t('Defines how many characters can be typed into the text field. For values higher than 255, remember that one term name can not be longer than 255 (would be cutted).'), ); $form['tode']['show_term_form'] = array( '#type' => 'checkbox', '#title' => t('Show taxonomy term edit form ?'), '#default_value' => $settings['show_term_form'], ); // /* TODO active_tags : leave this in place because of the multi terms feature in the future */ // if (module_exists('active_tags')) { // $form['update']['active_tags'] = array( // '#type' => 'checkbox', // '#title' => t('Use Active Tags style widget'), // '#default_value' => isset($widget['active_tags']) ? $widget['active_tags'] : 0, // '#description' => t('Use the Active Tags module to improve the usability of this autocomplete widget.'), // ); // } return $form; } // function tode_form_content_field_edit_form_alter(&$form, &$form_state){ // dsm('tode_form_content_field_edit_form_alter'); // /* // TODO add the multi terms feature // */ // if($form['type']['#value'] == 'content_taxonomy' && $form['widget_module']['#value'] == 'tode'){ // $form['field']['multiple']['#default_value'] = 0; // 0 here is 1 value for the cck field // $form['field']['multiple']['#prefix'] = '
'; // } // } function _tode_widget_settings_maxlength_validate($element, &$form_state) { $value = $form_state['values']['maxlength']; if (!is_numeric($value) || intval($value) != $value || $value <= 0) { form_error($element, t('"Maximum length" must be a positive integer.')); } } /** * Implementation of FAPI hook_elements(). * * Any FAPI callbacks needed for individual widgets can be declared here, * and the element will be passed to those callbacks for processing. * * Drupal will automatically theme the element using a theme with * the same name as the hook_elements key. * * Autocomplete_path is not used by text_widget but other widgets can use it * (see nodereference and userreference). * * http://drupal.org/node/224333#hook_element_info * */ #hook_element_info() function tode_element_info() { return array( 'tode' => array( '#input' => TRUE, '#columns' => array('value'), '#delta' => 0, '#process' => array('tode_element_process'), ), ); } /** * Implementation of hook_field_widget_form(). */ function tode_field_widget_form(&$form, &$form_state, $field, $instance, $langcode, $items, $delta, $element) { dsm('tode_field_widget_form'); dsm($items, 'items'); dsm($element, '$element'); /* $element['#entity_type'] $element['#bundle'] $element['#field_name'] $element['#language'] $element['#columns'] $element['#title'] $element['#description'] $element['#required'] $element['#delta'] $element['#language'] */ # thats the original D6 $element // $element = array( // '#type' => 'tode', // '#default_value' => isset($items) ? $items : NULL, // '#vid' => $field['vid'], // ); # example // // use += to avoid overwriting incoming $element // $element['value'] += array( // // Fill in $element. // ); // $tags = array(); // foreach ($items as $item) { // $tags[$item['tid']] = isset($item['taxonomy_term']) ? $item['taxonomy_term'] : taxonomy_term_load($item['tid']); // } $term_name = ''; $term_tid = 0; if(count($items)){ $term = isset($items[0]['taxonomy_term']) ? $items[0]['taxonomy_term'] : taxonomy_term_load($items[0]['tid']); $term_name = $term->term_name; $term_tid = $term->tid; } $element['tode_tid'] = array('#type' => 'hidden', '#value' => $term_tid,'#delta' => $element['#delta'],); $element += array( '#type' => 'textfield', '#default_value' => $term_name, '#size' => $instance['widget']['settings']['size'], '#maxlength' => $instance['widget']['settings']['maxlength'], '#element_validate' => array('tode_validate'), ); # add the term edit form // if(isset($value)) // _tode_add_term_form($element, $term, $widget['show_term_form']); return $element; } /** * Process an individual element. * * Build the form element. When creating a form using FAPI #process, * note that $element['#value'] is already set. * */ # OLD NOT USED ANY MORE, TRANSPOSE THIS CODE (ALL OR PART) ON hook_field_widget_form(); function tode_element_process($element, $edit, $form_state, $form) { // dsm('tode widget process'); // dsm($form, 'form'); // dsm($element, 'element'); $field_name = $element['#field_name']; $field = $form['#field_info'][$field_name]; $field_key = $element['#columns'][0]; // dsm($field); $widget = $field['widget']; $value = NULL; if (count($element['#default_value'])) { $term = taxonomy_get_term($element['#default_value'][0][$field_key]); // dsm($term); $value = $term->name; } # converting the tid to term name on visible value oh the text field, we re-convert terma name to tid on the validat function $element['#default_value'][0][$field_key] = $value; $element['#value'][$field_key] = $value; # memorize the tid for the validate function if($value) $element['tode_tid'] = array('#type' => 'hidden', '#value' => $term->tid,'#delta' => $element['#delta'],); $element[$field_key] = array( '#type' => 'textfield', '#default_value' => isset($element['#value'][$field_key]) ? $element['#value'][$field_key] : '', '#title' => $element['#title'], '#required' => $element['#required'], '#description' => $element['#description'], '#field_name' => $element['#field_name'], '#type_name' => $element['#type_name'], '#delta' => $element['#delta'], '#columns' => $element['#columns'], '#maxlength' => !empty($field['widget']['maxlength']) ? $field['widget']['maxlength'] : 255, ); # add the term edit form if(isset($value)) _tode_add_term_form($element, $term, $widget['show_term_form']); # add validation for the fieldform to retrive tid instead of term name (content taxonomy module), As i know we can't add a submit callback to the form from the widget if (empty($element[$field_key]['#element_validate'])) $element[$field_key]['#element_validate'] = array(); // array_unshift($element[$field_key]['#element_validate'], 'tode_validate'); # replace validate with submit added on form alter // dsm($form_state, 'form_state'); // dsm($element, 'element'); return $element; } /** * _tode_add_term_form($term) * */ function _tode_add_term_form(&$element, $term, $show){ module_load_include('inc', 'taxonomy', 'taxonomy.admin'); $term_form = _tode_term_form($term->tid); // dsm($term_form, 'term_form'); if($term_form){ $term_form['identification']['#prefix'] = ' '; $term_form['advanced']['synonyms']['#prefix'] = ' '; $term_form['advanced']['weight']['#prefix'] = ' '; $term_form['advanced']['parent']['#prefix'] = ' '; $term_form['advanced']['relations']['#prefix'] = ' '; # change appearence of adavnced fiedset to show both fiedlset inline $term_form['advanced']['#collapsible'] = FALSE; $term_form['fields']['#collapsible'] = FALSE; _tode_trim_options($term_form, 'advanced'); $term_form['advanced']['#attributes'] = array('class'=>'tcu-advanced-options'); $term_form['fields']['#attributes'] = array('class'=>'tcu-term-fields'); foreach($term_form['fields'] as $field_name => $field){ if($field['#type'] == 'textfield') $field['#size'] = 30; $term_form['fields'][$field_name] = $field; } unset($term_form['submit']); unset($term_form['delete']); #unset vid info 'cause is in conflict with the node's vid field // unset($term_form['vid']); $element['term_form'] = array( '#type' => 'fieldset', '#title' => t('Term edit'), '#tree' => TRUE, '#collapsible' => TRUE, '#collapsed' => FALSE, '#weight'=>1, '#group'=>'additional_settings', ); if(!$show){ $element['term_form']['#prefix'] = ' '; } $term_form = _tode_prefix_form($term_form, 'tode_termform_'.$element['#field_name'].'_'); $element['term_form'] += $term_form; $element['tode_termform'] = array('#type' => 'hidden', '#value' => 'true','#delta' => $element['#delta'],); // $element['#prefix'] = '