tode.module 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729
  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. function tode_field_widget_info() {
  53. return array(
  54. 'tode' => array(
  55. 'label' => t('Tode (create then update one unique term)'),
  56. 'field types' => array('taxonomy_term_reference'),
  57. 'behaviors' => array(
  58. 'multiple values' => FIELD_BEHAVIOR_DEFAULT,
  59. 'default value' => FIELD_BEHAVIOR_NONE,
  60. ),
  61. 'settings' => array(
  62. 'size' => 60,
  63. 'show_term_form'=> -1,
  64. 'choose_term_parent'=> -1,
  65. 'maxlength'=> 255,
  66. ),
  67. ),
  68. );
  69. }
  70. /**
  71. * Implementation of hook_widget_settings
  72. */
  73. function tode_field_widget_settings_form($field, $instance){
  74. // dsm($instance, 'tode_field_widget_settings_form : $instance');
  75. // dsm($field, 'field');
  76. $widget = $instance['widget'];
  77. $settings = $widget['settings'];
  78. // '#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')
  79. $form['maxlength'] = array(
  80. '#type' => 'textfield',
  81. '#title' => t('Maximum length of term'),
  82. '#default_value' => $settings['maxlength'],
  83. '#element_validate' => array('_tode_widget_settings_maxlength_validate'),
  84. '#required' => TRUE,
  85. '#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).'),
  86. );
  87. /*
  88. TODO complete the all flow of this
  89. */
  90. $form['show_term_form'] = array(
  91. '#type' => 'checkbox',
  92. '#title' => t('Show taxonomy term edit form ?'),
  93. '#default_value' => $settings['show_term_form'],
  94. );
  95. $form['choose_term_parent'] = array(
  96. '#type' => 'checkbox',
  97. '#title' => t('Enable taxonomy term parent selection ?'),
  98. '#default_value' => $settings['choose_term_parent'],
  99. );
  100. return $form;
  101. }
  102. function _tode_widget_settings_maxlength_validate($element, &$form_state) {
  103. // dsm('_tode_widget_settings_maxlength_validate');
  104. // dsm($element, '$element');
  105. // dsm($form_state, '$form_state');
  106. $widget = $form_state['values']['instance']['widget'];
  107. $value = $widget['settings']['maxlength'];
  108. if (!is_numeric($value) || intval($value) != $value || $value <= 0) {
  109. form_error($element, t('"Maximum length" must be a positive integer.'));
  110. }
  111. }
  112. /**
  113. * Implementation of FAPI hook_elements().
  114. *
  115. * Any FAPI callbacks needed for individual widgets can be declared here,
  116. * and the element will be passed to those callbacks for processing.
  117. *
  118. * Drupal will automatically theme the element using a theme with
  119. * the same name as the hook_elements key.
  120. *
  121. * Autocomplete_path is not used by text_widget but other widgets can use it
  122. * (see nodereference and userreference).
  123. *
  124. * http://drupal.org/node/224333#hook_element_info
  125. *
  126. */
  127. #hook_element_info() WHY ??
  128. /*
  129. function tode_element_info(){
  130. return array(
  131. 'tode' => array(
  132. '#input' => TRUE,
  133. '#columns' => array('value'),
  134. '#delta' => 0,
  135. '#process' => array('tode_element_process'),
  136. ),
  137. );
  138. }
  139. */
  140. /**
  141. * Implementation of hook_field_widget_form().
  142. */
  143. function tode_field_widget_form(&$form, &$form_state, $field, $instance, $langcode, $items, $delta, $element) {
  144. // dsm('- - - - tode_field_widget_form');
  145. // dsm($form, '&$form');
  146. // dsm($form_state, '&$form_state');
  147. // dsm($items, 'items');
  148. // dsm($element, '$element');
  149. // dsm($field, '$field');
  150. // dsm($instance, '$instance');
  151. $node = $form_state['node'];
  152. // dsm($node, '$node');
  153. if(isset($items[$delta])){
  154. $term = taxonomy_term_load($items[$delta]['tid']);
  155. // $term = i18n_taxonomy_term_get_translation($term, $node->language); // marche pas avec localized term
  156. // dsm($term, '$term');
  157. $term_parents = taxonomy_get_parents($term->tid);
  158. // dsm($term_parents, '$term_parents');
  159. $term_parent = array_pop($term_parents);
  160. }
  161. # no need of $node->translation_source because with node translation (not entity fields translation) tid remains
  162. # just have to translate term name on submit
  163. // if( !isset($node->id) && isset($node->translation_source) ){
  164. // }
  165. $form['tode_tid'] = array('#type' => 'hidden', '#value' => isset($term) ? $term->tid : 0,'#delta' => $element['#delta'],);
  166. # parent
  167. if( $instance['widget']['settings']['choose_term_parent'] ){
  168. // add parent form autocomplete if activated
  169. $vocabularies = array();
  170. foreach ($field['settings']['allowed_values'] as $tree)
  171. if ($vocabulary = taxonomy_vocabulary_machine_name_load($tree['vocabulary']))
  172. $vocabularies[$vocabulary->vid] = $vocabulary;
  173. $vocabulary = reset($vocabularies);
  174. // dsm($vocabulary, '$vocabulary');
  175. $form['tode_vid'] = array('#type' => 'hidden', '#value' => $vocabulary->vid,'#delta' => $element['#delta'],);
  176. $form['tode_parent_term'] = array(
  177. '#title' => 'Parent ' . $vocabulary->name . ' (optional)',
  178. '#type' => 'textfield',
  179. '#default_value' => isset($term_parent) ? $term_parent->name : '',
  180. '#autocomplete_path' => 'taxonomy/autocomplete' . '/' . $field['field_name'],
  181. '#size' => 60,
  182. '#maxlength' => 1024,
  183. '#element_validate' => array('tode_parent_autocomplete_validate'),
  184. );
  185. }else{
  186. // if parent selection not enabled set the current parent as hidden input
  187. $form['tode_parent_term'] = array(
  188. '#type' => 'hidden',
  189. '#value' => isset($term_parent) ? $term_parent->name : '',
  190. '#delta' => $element['#delta'],
  191. );
  192. }
  193. // set element form item
  194. $element += array(
  195. '#type' => 'textfield',
  196. '#default_value' => isset($term) ? ( if(module_exists('i18n_taxonomy')) ? i18n_taxonomy_term_name($term, $node->language) : $term->name ) : '',
  197. '#size' => $instance['widget']['settings']['size'],
  198. '#maxlength' => $instance['widget']['settings']['maxlength'],
  199. '#element_validate' => array('tode_widget_validate'),
  200. // '#element_submit' => array('tode_widget_submit'),
  201. );
  202. # add the term edit form
  203. if(isset($term))
  204. _tode_add_term_form($form, $term, $instance, $element['#delta']);
  205. // dsm($form, 'end tode_field_widget_form :: $form');
  206. return $element;
  207. }
  208. /**
  209. * _tode_add_term_form($term)
  210. *
  211. * show the complete taxonomy term form if feature is enabled
  212. *
  213. */
  214. function _tode_add_term_form(&$form, $term, $instance, $delta){
  215. // dsm('- - - - _tode_add_term_form');
  216. module_load_include('inc', 'taxonomy', 'taxonomy.admin');
  217. $term_form = _tode_term_form($term);
  218. // dsm($term_form, 'term_form');
  219. if($term_form){
  220. unset($term_form['actions']);
  221. unset($term_form['#action']);
  222. unset($term_form['#method']);
  223. #unset vid info 'cause is in conflict with the node's vid field
  224. unset($term_form['vid']);
  225. $term_form = _tode_clean_form($term_form);
  226. $prefix = 'tode_termform_'.$instance['field_name'];
  227. $term_form = _tode_prefix_form($term_form, $prefix.'_');
  228. $visible = $instance['widget']['settings']['show_term_form'];
  229. $form[$prefix] = array(
  230. '#type' => 'fieldset',
  231. '#title' => t('Term edit'),
  232. '#tree' => TRUE,
  233. '#collapsible' => TRUE,
  234. '#collapsed' => FALSE,
  235. '#weight'=>1,
  236. // '#group'=>'additional_settings',
  237. '#prefix' => $visible ? null : '<div style="display:none;">',
  238. '#suffix' => $visible ? null : '</div>',
  239. );
  240. $form[$prefix] += $term_form;
  241. // $form['tode_termform'] = array('#type' => 'hidden', '#value' => 'true','#delta' => $delta,);
  242. }
  243. }
  244. /**
  245. * Form element validate handler for tode parent term autocomplete element.
  246. */
  247. function tode_parent_autocomplete_validate($element, &$form_state) {
  248. // dsm('- - - - tode_autocomplete_validate');
  249. // dsm($element, '$element');
  250. // dsm($form_state, '$form_state');
  251. $value = array();
  252. if ($typed_term = $element['#value']) {
  253. // Translate term names into actual terms.
  254. // See if the term exists in the chosen vocabulary and return the tid;
  255. // otherwise, set error.
  256. if ($possibilities = taxonomy_term_load_multiple(array(), array('name' => trim($typed_term), 'vid' => $form_state['values']['tode_vid']))) {
  257. $term = array_pop($possibilities);
  258. $value = (array)$term;
  259. }
  260. else {
  261. form_error($element, t('Parent term can only be an existing term.'));
  262. }
  263. }
  264. //
  265. // dsm('form_set_value');
  266. form_set_value($element, $value, $form_state);
  267. }
  268. /**
  269. * Validation function for the tode element
  270. *
  271. * parses input and sets the values as needed (tid) for storing the data
  272. */
  273. function tode_widget_validate($element, &$form_state){
  274. // dsm('- - - - tode_widget_validate');
  275. // dsm($form_state, 'form_state');
  276. // dsm($element, 'element');
  277. $node = $form_state['node'];
  278. $value = array();
  279. if ($typed_term = $element['#value']) {
  280. $field = field_widget_field($element, $form_state);
  281. // dsm($field, 'field');
  282. $vocabularies = array();
  283. foreach ($field['settings']['allowed_values'] as $tree) {
  284. if ($vocabulary = taxonomy_vocabulary_machine_name_load($tree['vocabulary'])) {
  285. $vocabularies[$vocabulary->vid] = $vocabulary;
  286. }
  287. }
  288. // get the parent term tid or 0 (no parents)
  289. $parent_tid = isset($form_state['values']['tode_parent_term']['tid']) ? $form_state['values']['tode_parent_term']['tid'] : 0;
  290. // See if the term already exists and load the term
  291. // otherwise, create a new 'autocreate' term for insert.
  292. if($tid = $form_state['values']['tode_tid']){
  293. $term = taxonomy_term_load($tid);
  294. $term->name = $typed_term;
  295. $term->parent = $parent_tid;
  296. }else{
  297. $vocabulary = reset($vocabularies);
  298. $term = (object)array(
  299. 'tid' => 'autocreate', // autocreate not needed with direct taxonomy_term_save [EDIT] autocreate needed because of the hook_submit insted of hook_validate
  300. 'vid' => $vocabulary->vid,
  301. 'name' => $typed_term,
  302. 'vocabulary_machine_name' => $vocabulary->machine_name,
  303. 'parent' => $parent_tid,
  304. );
  305. // taxonomy_term_save($term); // save here the new term to directly get the tid on hook_node_validate
  306. // [EDIT] do not save the term here because it will be save even if node form is not validate
  307. // results term without node or mutiple orfan term
  308. // moving all process on node submit
  309. }
  310. // dsm($term, '$term');
  311. $value = (array)$term;
  312. }
  313. // dsm($value, '$value');
  314. form_set_value($element, $value, $form_state);
  315. }
  316. /**
  317. * Implements hook_field_widget_error().
  318. */
  319. function tode_field_widget_error($element, $error, $form, &$form_state) {
  320. # use this to set errors
  321. form_error($element['value'], $error['message']);
  322. }
  323. /**
  324. * Implements hook_node_submit().
  325. */
  326. function tode_node_submit($node, $form, &$form_state) {
  327. // dsm('- - - tode_node_submit');
  328. // dsm($node, '$node');
  329. // dsm($form, '$form');
  330. // dsm($form_state, '$form_state');
  331. module_load_include('inc', 'taxonomy', 'taxonomy.admin');
  332. // module_load_include('inc', 'i18n_string', 'i18n_string.pages');
  333. //
  334. $tode_fields = _tode_get_tode_fields_def($node);
  335. // dsm($tode_fields, '$tode_fields');
  336. if(!count($tode_fields))
  337. return;
  338. $language = $node->language;
  339. $default_language = language_default('language');
  340. // dsm($default_language, '$default_language');
  341. foreach ($tode_fields as $field_name => $field) {
  342. // retreive the prefixed termfom values (hidden or visible)
  343. $prefix = 'tode_termform_'.$field_name;
  344. // if term_form is not available
  345. // it meens that we are on the creation of a node
  346. // hook_node_presave will handle this case
  347. if( !isset($form_state['values'][$prefix]) )
  348. continue;
  349. // else
  350. // we are on the update or on the translation (from initial node)
  351. // so we can go forward
  352. // retreive the initial tode_field language
  353. $init_language = $form[$field_name]['#language'];
  354. // retreive the value of term field, to get the typed term name
  355. $tode_field_term_value = $form_state['values'][$field_name][$init_language][0];
  356. // dsm($tode_field_term_value, '$tode_field_term_value');
  357. $values = _tode_prefix_form($form_state['values'][$prefix], $prefix.'_', FALSE);
  358. // dsm($values, 'values');
  359. if(!module_exists('i18n_taxonomy') || $language == 'und' || $language == $default_language){
  360. // define the form_state for term_form submit
  361. $new_term_form_state = array(
  362. 'build_info'=>array(
  363. 'args'=>array(0=>(object)$tode_field_term_value),
  364. ),
  365. "values"=>array(
  366. 'name'=> $tode_field_term_value['name'], // replace the original (hidden) term name value by the typed in the the entity field
  367. 'op'=> t('Save'),
  368. )
  369. );
  370. // add new values to form_state
  371. $new_term_form_state['values'] += $values;
  372. // dsm($new_term_form_state, 'form_state');
  373. drupal_form_submit('taxonomy_form_term', $new_term_form_state);
  374. }else{
  375. $context= array('term',$values['tid'],'name');
  376. i18n_string_textgroup('taxonomy')->update_translation($context, $language, $tode_field_term_value['name']);
  377. }
  378. }
  379. }
  380. /**
  381. * Implements hook_node_presave().
  382. */
  383. function tode_node_presave($node) {
  384. // dsm('- - - tode_node_presave');
  385. // dsm($node, 'node');
  386. if($node->nid)
  387. return;
  388. $tode_fields = _tode_get_tode_fields_def($node);
  389. if(!count($tode_fields))
  390. return;
  391. $default_language = language_default('language');
  392. // purpose of that is to directly atribute the right language to the term
  393. foreach ($tode_fields as $field_name => $field){
  394. $tode_field = $node->$field_name;
  395. $tode_field_term = $tode_field[$node->language][0]; // on node creation field language is always to und (sure ?)
  396. // // test the language, if not default language create the term name translation
  397. if( module_exists('i18n_taxonomy') && ( $node->language != 'und' || $node->language != $default_language ) ){
  398. $context= array('term',$tode_field_term['tid'],'name');
  399. i18n_string_textgroup('taxonomy')->update_translation($context, $node->language, $tode_field_term['name']);
  400. }
  401. }
  402. }
  403. /*
  404. TODO Sélectionner une traduction pour test tode fr
  405. merge two terms when translation is made by selecting a node whiche already exists
  406. */
  407. /**
  408. * Implementation of hook_form_alter().
  409. *
  410. * node deletion to delete also the tode term
  411. *
  412. */
  413. function tode_form_alter(&$form, $form_state, $form_id){
  414. /*
  415. TODO block the deletion if tode term has children !! because this will delete them to …
  416. */
  417. if (stripos($form_id, 'node_delete_confirm') !== false){
  418. // dsm($form_id, 'tode form_alter form_id');
  419. _tode_node_delete_form_alter($form, $form_state);
  420. // dsm($form);
  421. }else if(stripos($form_id, 'node_admin_content') !== false){
  422. if(isset($form['operation']) && $form['operation']['#value'] == 'delete'){
  423. // dsm($form, 'node_admin_content form');
  424. // dsm($form_state, 'form_state');
  425. _tode_nodes_delete_form_alter($form, $form_state);
  426. }
  427. }
  428. }
  429. function _tode_node_delete_form_alter(&$form, $form_state){
  430. // dsm($form, '_tode_node_delete_form_alter : form');
  431. // get the node
  432. $node = $form['#node'];
  433. // dsm($node, '$node');
  434. #get the fields defenition of node type
  435. $tode_fields = _tode_get_tode_fields_def($node);
  436. // dsm($tode_fields);
  437. if(count($tode_fields) == 0)
  438. return;
  439. #get the terms value
  440. $terms = array('names'=>array(), 'tids'=>array());
  441. foreach ($tode_fields as $field_name => $field)
  442. _tode_populate_terms_node_delete($terms, $node->$field_name);
  443. _tode_node_delete_prepare_form($form, $terms);
  444. }
  445. function _tode_nodes_delete_form_alter(&$form, $form_state){
  446. // dsm($form, '_tode_nodes_delete_form_alter : form');
  447. $nodes = array();
  448. foreach ($form_state['values']['nodes'] as $nid => $actif)
  449. if($actif)
  450. $nodes[] = node_load($nid);
  451. #get the terms value
  452. $terms = array('names'=>array(), 'tids'=>array());
  453. foreach ($nodes as $node) {
  454. #get the fields definition of node type
  455. $tode_fields = _tode_get_tode_fields_def($node);
  456. //dsm($tode_fields);
  457. if(count($tode_fields) == 0)
  458. continue;
  459. foreach ($tode_fields as $field_name => $field)
  460. _tode_populate_terms_node_delete($terms, $node->$field_name);
  461. }
  462. _tode_node_delete_prepare_form($form, $terms);
  463. }
  464. function _tode_populate_terms_node_delete(&$terms, $tode_field){
  465. foreach ($tode_field as $language) {
  466. foreach ($language as $term) {
  467. $term = taxonomy_term_load($term['tid']);
  468. if(!in_array($term->tid, $terms['tids'])){
  469. $terms['names'][] = $term->name;
  470. $terms['tids'][] = $term->tid;
  471. }
  472. }
  473. }
  474. }
  475. function _tode_node_delete_prepare_form(&$form, $terms){
  476. if(count($terms)){
  477. /*
  478. TODO add here a checkbox to select terms to delete
  479. */
  480. #add some warning in form description
  481. $form['description']['#markup'] .= '<br />'.t('this will also delete taxonomy terms : %terms', array('%terms'=>implode(', ', $terms['names'])));
  482. $form['tode_delete'] = array( '#type' => 'hidden', '#value' => serialize($terms['tids']),);
  483. $form['tode_terms'] = array('#type' => 'hidden', '#value' => serialize($terms['names']),);
  484. $form['#submit'][] = 'tode_delete_submit';
  485. }
  486. }
  487. function tode_delete_submit($form, &$form_state){
  488. $tids = unserialize($form['tode_delete']['#value']);
  489. foreach ($tids as $tid)
  490. taxonomy_term_delete($tid);
  491. $terms = unserialize($form['tode_terms']['#value']);
  492. drupal_set_message(t('Following Taxonomy terms have been deleted : %terms', array('%terms' => implode(', ', $terms) )), 'status');
  493. }
  494. /**
  495. * HELPERS
  496. */
  497. function _tode_clean_form($form, $level = 0){
  498. foreach ($form as $key => $value) {
  499. if(strpos($key,'#') !== false || $key == 'form_build_id' || $key == 'form_id' || $key == 'form_token'){
  500. if( $level == 0 || $key == "#element_validate")
  501. unset($form[$key]);
  502. }elseif(is_array($value)){
  503. $form[$key] = _tode_clean_form($value, $level+1);
  504. }
  505. }
  506. return $form;
  507. }
  508. function _tode_prefix_form($form, $prefix = '', $add = TRUE){
  509. foreach ($form as $key => $value) {
  510. if(strpos($key,'#') === false){
  511. if((isset($value['#type']) && $value['#type'] == 'fieldset') || (!$add && is_array($value)))
  512. $value = _tode_prefix_form($value, $prefix, $add);
  513. if($add){
  514. $form[$prefix.$key] = $value;
  515. unset($form[$key]);
  516. }elseif(strpos($key, $prefix) !== false ){
  517. $form[str_replace($prefix, '', $key)] = $value;
  518. unset($form[$key]);
  519. }
  520. }
  521. }
  522. return $form;
  523. }
  524. /**
  525. * _tode_term_form($tid)
  526. *
  527. */
  528. function _tode_term_form($term){
  529. // dsm('_tode_term_form');
  530. if ($term) {
  531. $form_state = array(
  532. 'build_info'=>array(
  533. 'args'=>array(0=>$term)
  534. ),
  535. 'method'=>'post',
  536. );
  537. // function taxonomy_form_term($form, &$form_state, $edit = array(), $vocabulary = NULL) {
  538. $term_form = drupal_retrieve_form('taxonomy_form_term', $form_state);
  539. drupal_prepare_form('taxonomy_form_term', $term_form, $form_state);
  540. return $term_form;
  541. }else{
  542. return false;
  543. }
  544. }
  545. /**
  546. * _tode_trim_options(&$form, $element)
  547. *
  548. */
  549. function _tode_trim_options(&$form, $item){
  550. foreach ($form[$item] as $field_name => $field) {
  551. if(((is_array($field)) && $field['#type'] == 'select') && $field['#multiple']){
  552. $options = $field['#options'];
  553. for ($i=0; $i < count($options); $i++) {
  554. if(!isset($options[$i]->option))
  555. continue;
  556. $op = array();
  557. foreach ($options[$i]->option as $key => $value)
  558. $op[$key] = strlen($value) > 25 ? substr_replace ($value, ' [...] ', 15, -10) : $value; // affiche 'abc...xyz'
  559. $options[$i]->option = $op;
  560. }
  561. $field['#options'] = $options;
  562. $form[$item][$field_name] = $field;
  563. }
  564. }
  565. }
  566. /**
  567. * OK OK OK
  568. */
  569. function _tode_get_tode_fields_def($node){
  570. // dsm($node, '_tode_get_fields_def');
  571. #get the fields defenition of node type
  572. $type_fields = field_info_instances('node');
  573. // dsm($type_fields, 'type_fields definition');
  574. #get the tode node fields
  575. $tode_fields = array();
  576. foreach ($type_fields[$node->type] as $field_name => $field) {
  577. if($field['widget']['type'] == 'tode')
  578. $tode_fields[$field_name] = $field;
  579. }
  580. return $tode_fields;
  581. }