tode.module 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642
  1. <?php
  2. /**
  3. * developed by www.g-u-i.net
  4. * 2011
  5. * First time this field will be used, it will create a new term with the value inserted in the textfield,
  6. * after that, the term (tid) will always be the same, just update term name by updating the value of the field.
  7. * You can keep synchronized a fixe term with a node,
  8. * you can set an auto title from this field, The required,
  9. * number of value at 1 and term_node synch of global field are required
  10. *
  11. *
  12. */
  13. /**
  14. * Implementation of hook_menu().
  15. */
  16. /*
  17. function tode_menu() {
  18. $items = array();
  19. // $items['node/%node/tode/%term'] = array(
  20. // 'title' => 'Taxonomy Term',
  21. // 'type' => MENU_LOCAL_TASK,
  22. // 'access callback' => 'tode_node_tab_access',
  23. // 'access arguments' => array(2),
  24. // 'page callback' => 'tode_tab_page',
  25. // 'page arguments' => array(2),
  26. // 'file' => 'tode.pages.inc',
  27. // 'weight' => 2,
  28. // );
  29. return $items;
  30. }
  31. */
  32. /**
  33. * Implementation of hook_theme().
  34. */
  35. function tode_theme() {
  36. return array(
  37. 'tode' => array(
  38. 'arguments' => array('element' => NULL),
  39. ),
  40. );
  41. }
  42. /**
  43. * Implementation of hook_init().
  44. */
  45. function tode_init() {
  46. // File hooks and callbacks may be used by any module.
  47. drupal_add_css(drupal_get_path('module', 'tode') .'/tode.css');
  48. }
  49. /**
  50. * Implementation of hook_field_widget_info().
  51. */
  52. # BUG PLUS
  53. function tode_field_widget_info() {
  54. return array(
  55. 'tode' => array(
  56. 'label' => t('Tode (create then update one unique term)'),
  57. 'field types' => array('taxonomy_term_reference'),
  58. 'behaviors' => array(
  59. 'multiple values' => FIELD_BEHAVIOR_DEFAULT,
  60. 'default value' => FIELD_BEHAVIOR_NONE,
  61. ),
  62. 'settings' => array(
  63. 'size' => 60,
  64. 'show_term_form'=> -1,
  65. 'choose_term_parent'=> -1,
  66. 'maxlength'=> 255,
  67. ),
  68. ),
  69. );
  70. }
  71. /**
  72. * Implementation of hook_widget_settings
  73. */
  74. #hook_field_widget_settings_form($field, $instance)
  75. function tode_field_widget_settings_form($field, $instance){
  76. dsm($instance, 'tode_field_widget_settings_form : $instance');
  77. dsm($field, 'field');
  78. $widget = $instance['widget'];
  79. $settings = $widget['settings'];
  80. // '#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')
  81. $form['maxlength'] = array(
  82. '#type' => 'textfield',
  83. '#title' => t('Maximum length of term'),
  84. '#default_value' => $settings['maxlength'],
  85. '#element_validate' => array('_tode_widget_settings_maxlength_validate'),
  86. '#required' => TRUE,
  87. '#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).'),
  88. );
  89. /*
  90. TODO complete the all flow of this
  91. */
  92. // $form['show_term_form'] = array(
  93. // '#type' => 'checkbox',
  94. // '#title' => t('Show taxonomy term edit form ?'),
  95. // '#default_value' => $settings['show_term_form'],
  96. // );
  97. $form['choose_term_parent'] = array(
  98. '#type' => 'checkbox',
  99. '#title' => t('Enable taxonomy term parent selection ?'),
  100. '#default_value' => $settings['choose_term_parent'],
  101. );
  102. return $form;
  103. }
  104. function _tode_widget_settings_maxlength_validate($element, &$form_state) {
  105. // dsm('_tode_widget_settings_maxlength_validate');
  106. // dsm($element, '$element');
  107. // dsm($form_state, '$form_state');
  108. $widget = $form_state['values']['instance']['widget'];
  109. $value = $widget['settings']['maxlength'];
  110. if (!is_numeric($value) || intval($value) != $value || $value <= 0) {
  111. form_error($element, t('"Maximum length" must be a positive integer.'));
  112. }
  113. }
  114. /**
  115. * Implementation of FAPI hook_elements().
  116. *
  117. * Any FAPI callbacks needed for individual widgets can be declared here,
  118. * and the element will be passed to those callbacks for processing.
  119. *
  120. * Drupal will automatically theme the element using a theme with
  121. * the same name as the hook_elements key.
  122. *
  123. * Autocomplete_path is not used by text_widget but other widgets can use it
  124. * (see nodereference and userreference).
  125. *
  126. * http://drupal.org/node/224333#hook_element_info
  127. *
  128. */
  129. #hook_element_info() WHY ??
  130. /*
  131. function tode_element_info() {
  132. return array(
  133. 'tode' => array(
  134. '#input' => TRUE,
  135. '#columns' => array('value'),
  136. '#delta' => 0,
  137. '#process' => array('tode_element_process'),
  138. ),
  139. );
  140. }
  141. */
  142. /**
  143. * Implementation of hook_field_widget_form().
  144. */
  145. function tode_field_widget_form(&$form, &$form_state, $field, $instance, $langcode, $items, $delta, $element) {
  146. // dsm('tode_field_widget_form');
  147. // dsm($form, '&$form');
  148. // dsm($form_state, '&$form_state');
  149. // dsm($items, 'items');
  150. // dsm($element, '$element');
  151. // dsm($field, '$field');
  152. // dsm($instance, '$instance');
  153. if(isset($items[$delta])){
  154. $term = taxonomy_term_load($items[$delta]['tid']);
  155. // dsm($term, '$term');
  156. $term_parents = taxonomy_get_parents($term->tid);
  157. dsm($term_parents, '$term_parents');
  158. $term_parent = array_pop($term_parents);
  159. }
  160. $form['tode_tid'] = array('#type' => 'hidden', '#value' => isset($term) ? $term->tid : 0,'#delta' => $element['#delta'],);
  161. // add parent form autocomplete if activated
  162. if($instance['widget']['settings']['choose_term_parent']){
  163. $vocabularies = array();
  164. foreach ($field['settings']['allowed_values'] as $tree)
  165. if ($vocabulary = taxonomy_vocabulary_machine_name_load($tree['vocabulary']))
  166. $vocabularies[$vocabulary->vid] = $vocabulary;
  167. $vocabulary = reset($vocabularies);
  168. // dsm($vocabulary, '$vocabulary');
  169. $form['tode_vid'] = array('#type' => 'hidden', '#value' => $vocabulary->vid,'#delta' => $element['#delta'],);
  170. $form['tode_parent_term'] = array(
  171. '#title' => 'Parent ' . $vocabulary->name . ' (optional)',
  172. '#type' => 'textfield',
  173. '#default_value' => isset($term_parent) ? $term_parent->name : '',
  174. '#autocomplete_path' => 'taxonomy/autocomplete' . '/' . $field['field_name'],
  175. '#size' => 60,
  176. '#maxlength' => 1024,
  177. '#element_validate' => array('tode_autocomplete_validate'),
  178. );
  179. }
  180. // set element form item
  181. $element += array(
  182. '#type' => 'textfield',
  183. '#default_value' => isset($term) ? $term->name : '',
  184. '#size' => $instance['widget']['settings']['size'],
  185. '#maxlength' => $instance['widget']['settings']['maxlength'],
  186. '#element_validate' => array('tode_validate'),
  187. );
  188. # add the term edit form
  189. // if($term_tid)
  190. // _tode_add_term_form($element, $term, $instance['widget']['settings']['show_term_form']);
  191. // dsm($element, '$element');
  192. return $element;
  193. }
  194. /**
  195. * _tode_add_term_form($term)
  196. *
  197. * show the complete taxonomy term form if feature is enabled
  198. *
  199. */
  200. # note available yet with 7.x
  201. function _tode_add_term_form(&$element, $term, $show){
  202. module_load_include('inc', 'taxonomy', 'taxonomy.admin');
  203. $term_form = _tode_term_form($term);
  204. dsm($term_form, 'term_form');
  205. if($term_form){
  206. //
  207. // $term_form['identification']['#prefix'] = '<div style="display:none;">';
  208. // $term_form['identification']['#suffix'] = '</div>';
  209. // $term_form['advanced']['synonyms']['#prefix'] = '<div style="display:none;">';
  210. // $term_form['advanced']['synonyms']['#suffix'] = '</div>';
  211. // $term_form['advanced']['weight']['#prefix'] = '<div style="display:none;">';
  212. // $term_form['advanced']['weight']['#suffix'] = '</div>';
  213. // $term_form['advanced']['parent']['#prefix'] = '<div style="display:none;">';
  214. // $term_form['advanced']['parent']['#suffix'] = '</div>';
  215. // $term_form['advanced']['relations']['#prefix'] = '<div style="display:none;">';
  216. // $term_form['advanced']['relations']['#suffix'] = '</div>';
  217. //
  218. // # change appearence of adavnced fiedset to show both fiedlset inline
  219. // $term_form['advanced']['#collapsible'] = FALSE;
  220. // $term_form['fields']['#collapsible'] = FALSE;
  221. //
  222. // _tode_trim_options($term_form, 'advanced');
  223. // $term_form['advanced']['#attributes'] = array('class'=>'tcu-advanced-options');
  224. // $term_form['fields']['#attributes'] = array('class'=>'tcu-term-fields');
  225. //
  226. // foreach($term_form['fields'] as $field_name => $field){
  227. // if($field['#type'] == 'textfield')
  228. // $field['#size'] = 30;
  229. //
  230. // $term_form['fields'][$field_name] = $field;
  231. // }
  232. //
  233. // unset($term_form['submit']);
  234. // unset($term_form['delete']);
  235. //
  236. // #unset vid info 'cause is in conflict with the node's vid field
  237. // // unset($term_form['vid']);
  238. $element['term_form'] = array(
  239. '#type' => 'fieldset',
  240. '#title' => t('Term edit'),
  241. '#tree' => TRUE,
  242. '#collapsible' => TRUE,
  243. '#collapsed' => FALSE,
  244. '#weight'=>1,
  245. '#group'=>'additional_settings',
  246. );
  247. // if(!$show){
  248. // $element['term_form']['#prefix'] = '<div style="display:none;">';
  249. // $element['term_form']['#suffix'] = '</div>';
  250. // }
  251. $term_form = _tode_prefix_form($term_form, 'tode_termform_'.$element['#field_name'].'_');
  252. $element['term_form'] += $term_form;
  253. $element['tode_termform'] = array('#type' => 'hidden', '#value' => 'true','#delta' => $element['#delta'],);
  254. // $element['#prefix'] = '<div class="tode-term-edit-form-box">';
  255. // $element['#suffix'] = '</div>';
  256. dsm($element, 'element');
  257. }
  258. }
  259. /**
  260. * Form element validate handler for tode parent term autocomplete element.
  261. */
  262. function tode_autocomplete_validate($element, &$form_state) {
  263. // dsm('tode_autocomplete_validate');
  264. // dsm($element, '$element');
  265. // dsm($form_state, '$form_state');
  266. $value = null;
  267. if ($typed_term = $element['#value']) {
  268. // Translate term names into actual terms.
  269. // See if the term exists in the chosen vocabulary and return the tid;
  270. // otherwise, set error.
  271. if ($possibilities = taxonomy_term_load_multiple(array(), array('name' => trim($typed_term), 'vid' => $form_state['values']['tode_vid']))) {
  272. $term = array_pop($possibilities);
  273. $value = (array)$term;
  274. }
  275. else {
  276. form_error($element, t('Parent term can only be an existing term.'));
  277. }
  278. }
  279. //
  280. form_set_value($element, $value, $form_state);
  281. }
  282. /**
  283. * Validation function for the tode element
  284. *
  285. * parses input and sets the values as needed (tid) for storing the data
  286. */
  287. function tode_validate($element, &$form_state){
  288. // dsm('tode_validate');
  289. // dsm($form_state, 'form_state');
  290. // dsm($element, 'element');
  291. /*
  292. TODO term translation (entity translate + node title question)
  293. */
  294. $value = array();
  295. if ($typed_term = $element['#value']) {
  296. $field = field_widget_field($element, $form_state);
  297. // dsm($field, 'field');
  298. $vocabularies = array();
  299. foreach ($field['settings']['allowed_values'] as $tree) {
  300. if ($vocabulary = taxonomy_vocabulary_machine_name_load($tree['vocabulary'])) {
  301. $vocabularies[$vocabulary->vid] = $vocabulary;
  302. }
  303. }
  304. // See if the term already exists and load the term
  305. // otherwise, create a new 'autocreate' term for insert.
  306. if($tid = $form_state['values']['tode_tid']){
  307. $term = taxonomy_term_load($tid);
  308. }else{
  309. $vocabulary = reset($vocabularies);
  310. $term = array(
  311. 'tid' => 'autocreate',
  312. 'vid' => $vocabulary->vid,
  313. 'name' => $typed_term,
  314. 'vocabulary_machine_name' => $vocabulary->machine_name,
  315. );
  316. }
  317. // save the parent term if provided
  318. if($parent_term = $form_state['values']['tode_parent_term']){
  319. dsm($parent_term, 'tode_parent_term');
  320. $term->parent = $parent_term['tid'];
  321. taxonomy_term_save($term);
  322. }
  323. // dsm($term, '$term');
  324. $value = (array)$term;
  325. }
  326. // dsm($value, '$value');
  327. form_set_value($element, $value, $form_state);
  328. }
  329. /**
  330. * Implements hook_field_widget_error().
  331. */
  332. function tode_field_widget_error($element, $error, $form, &$form_state) {
  333. # use this to set errors
  334. form_error($element['value'], $error['message']);
  335. }
  336. /**
  337. * Implements hook_node_validate().
  338. *
  339. * use to save the all term form (steel have to be debuged)
  340. *
  341. */
  342. function __tode_node_validate($node, $form){
  343. module_load_include('inc', 'taxonomy', 'taxonomy.admin');
  344. dsm('tode_node_validate');
  345. dsm($node, '&node');
  346. dsm($form, '&form');
  347. $tode_fields = _tode_get_tode_fields_def($node);
  348. dsm($tode_fields, '$tode_fields');
  349. # OK
  350. /*
  351. if(!count($tode_fields))
  352. return;
  353. foreach ($tode_fields as $field_name => $field) {
  354. $values = array();
  355. $prefix = 'tode_termform_'.$field_name.'_';
  356. foreach ($node as $key => $value) {
  357. if(strpos($key, $prefix) !== FALSE)
  358. $values[$key] = $value;
  359. }
  360. // dsm($values, 'values');
  361. $values = _tode_prefix_form($values, $prefix, FALSE);
  362. // dsm($values, 'values');
  363. $array_term = (array)taxonomy_get_term($values['tid']);
  364. foreach ($values as $key => $value) {
  365. if(is_array($value))
  366. $values += $value;
  367. }
  368. $array_term = (array)taxonomy_get_term($values['tid']);
  369. // dsm($values, 'values');
  370. $form_state = array();
  371. $form_state['values'] = $values;
  372. $form_state['values']['op'] = t('Save');
  373. // dsm($form_state, 'form_state');
  374. drupal_execute('taxonomy_form_term', $form_state, taxonomy_vocabulary_load($array_term['vid']), $array_term);
  375. }
  376. */
  377. }
  378. /**
  379. * theme_tode
  380. *
  381. */
  382. // function theme_tode($element) {
  383. // dsm('theme_tode');
  384. // dsm($element, '$element');
  385. // return $element['#children'];
  386. // }
  387. /**
  388. * Implementation of hook_form_alter().
  389. *
  390. * node deletion to delete also the tode term
  391. *
  392. */
  393. function tode_form_alter(&$form, $form_state, $form_id){
  394. if (stripos($form_id, 'node_delete_confirm') !== false){
  395. // dsm($form_id, 'tode form_alter form_id');
  396. /*
  397. TODO test deletion
  398. */
  399. _tode_node_delete_form_alter($form, $form_state);
  400. // dsm($form);
  401. }
  402. }
  403. function _tode_node_delete_form_alter(&$form){
  404. // dsm($form, '_tode_node_delete_form_alter : form');
  405. #get the node
  406. $node = $form['#parameters'][2];
  407. // dsm($node);
  408. # why that tnid ???
  409. // if($node->tnid != 0)
  410. // return;
  411. #get the fields defenition of node type
  412. $tode_fields = _tode_get_tode_fields_def($node->type);
  413. //dsm($tode_fields);
  414. if(count($tode_fields) == 0)
  415. return;
  416. #get the terms value
  417. $terms = array();
  418. $tids = array();
  419. foreach ($tode_fields as $field_name => $field) {
  420. foreach ($node->$field_name as $term) {
  421. $term = taxonomy_get_term($term['value']);
  422. $terms[] = $term->name;
  423. $tids[] = $term->tid;
  424. }
  425. }
  426. if(count($terms)){
  427. /*
  428. TODO add here a checkbox to select terms to delete
  429. */
  430. #add some warning in form description
  431. $form['description']['#value'] .= '<br />'.t('this will also delete taxonomy terms : %terms', array('%terms'=>implode(', ', $terms)));
  432. $form['tode_delete'] = array( '#type' => 'hidden', '#value' => serialize($tids),);
  433. $form['tode_terms'] = array('#type' => 'hidden', '#value' => serialize($terms),);
  434. $form['#submit'][] = 'tode_delete_submit';
  435. }
  436. }
  437. function tode_delete_submit($form, &$form_state){
  438. $tids = unserialize($form['tode_delete']['#value']);
  439. foreach ($tids as $tid)
  440. taxonomy_del_term($tid);
  441. $terms = unserialize($form['tode_terms']['#value']);
  442. drupal_set_message(t('Following Taxonomy terms have been deleted : %terms', array('%terms' => implode(', ', $terms) )), 'status');
  443. }
  444. /**
  445. * HELPERS
  446. */
  447. //
  448. // function _tode_prefix_keys($k){
  449. // if(strpos('#', $kk) == false)
  450. // return $prefix.$k;
  451. // }
  452. function _tode_clean_form($form){
  453. foreach ($form as $key => $value) {
  454. if(strpos($key,'#') !== false){
  455. unset($form[$key]);
  456. }elseif(is_array($value)){
  457. $form[$key] = _tode_clean_form($value);
  458. }
  459. }
  460. return $form;
  461. }
  462. function _tode_prefix_form($form, $prefix = '', $add = TRUE){
  463. foreach ($form as $key => $value) {
  464. if(strpos($key,'#') === false){
  465. if($value['#type'] == 'fieldset' || (!$add && is_array($value)))
  466. $value = _tode_prefix_form($value, $prefix, $add);
  467. if($add){
  468. $form[$prefix.$key] = $value;
  469. unset($form[$key]);
  470. }elseif(strpos($key, $prefix) !== false ){
  471. $form[str_replace($prefix, '', $key)] = $value;
  472. unset($form[$key]);
  473. }
  474. }
  475. }
  476. return $form;
  477. }
  478. /**
  479. * _tode_term_form($tid)
  480. *
  481. */
  482. function _tode_term_form($term){
  483. if ($array_term = (array)$term) {
  484. $form_state = array();
  485. $term_form = drupal_retrieve_form('taxonomy_form_term', $form_state, taxonomy_vocabulary_load($array_term['vid']), $array_term);
  486. drupal_prepare_form('taxonomy_form_term', $term_form, $form_state);
  487. return $term_form;
  488. }else{
  489. return false;
  490. }
  491. }
  492. /**
  493. * _tode_trim_options(&$form, $element)
  494. *
  495. */
  496. function _tode_trim_options(&$form, $item){
  497. foreach ($form[$item] as $field_name => $field) {
  498. if(((is_array($field)) && $field['#type'] == 'select') && $field['#multiple']){
  499. $options = $field['#options'];
  500. for ($i=0; $i < count($options); $i++) {
  501. if(!isset($options[$i]->option))
  502. continue;
  503. $op = array();
  504. foreach ($options[$i]->option as $key => $value)
  505. $op[$key] = strlen($value) > 25 ? substr_replace ($value, ' [...] ', 15, -10) : $value; // affiche 'abc...xyz'
  506. $options[$i]->option = $op;
  507. }
  508. $field['#options'] = $options;
  509. $form[$item][$field_name] = $field;
  510. }
  511. }
  512. }
  513. /**
  514. * OK OK OK
  515. */
  516. function _tode_get_tode_fields_def($node){
  517. dsm($node, '_tode_get_fields_def');
  518. #get the fields defenition of node type
  519. $type_fields = field_info_instances('node');
  520. dsm($type_fields, 'type_fields definition');
  521. #get the tode node fields
  522. $tode_fields = array();
  523. foreach ($type_fields[$node->type] as $field_name => $field) {
  524. if($field['widget']['type'] == 'tode')
  525. $tode_fields[$field_name] = $field;
  526. }
  527. return $tode_fields;
  528. }