tode.module 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761
  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. function tode_menu() {
  17. $items = array();
  18. // $items['node/%node/tode/%term'] = array(
  19. // 'title' => 'Taxonomy Term',
  20. // 'type' => MENU_LOCAL_TASK,
  21. // 'access callback' => 'tode_node_tab_access',
  22. // 'access arguments' => array(2),
  23. // 'page callback' => 'tode_tab_page',
  24. // 'page arguments' => array(2),
  25. // 'file' => 'tode.pages.inc',
  26. // 'weight' => 2,
  27. // );
  28. return $items;
  29. }
  30. /**
  31. * Implementation of hook_theme().
  32. */
  33. function tode_theme() {
  34. return array(
  35. 'tode' => array(
  36. 'arguments' => array('element' => NULL),
  37. ),
  38. );
  39. }
  40. /**
  41. * Implementation of hook_init().
  42. */
  43. function tode_init() {
  44. // File hooks and callbacks may be used by any module.
  45. drupal_add_css(drupal_get_path('module', 'tode') .'/tode.css');
  46. }
  47. /**
  48. * Implementation of hook_field_widget_info().
  49. */
  50. # BUG PLUS
  51. function tode_field_widget_info() {
  52. return array(
  53. 'tode' => array(
  54. 'label' => t('Create update/change'),
  55. 'field types' => array('taxonomy_term_reference'),
  56. 'behaviors' => array(
  57. 'multiple values' => FIELD_BEHAVIOR_DEFAULT,
  58. 'default value' => FIELD_BEHAVIOR_NONE,
  59. ),
  60. 'settings' => array(
  61. 'size' => 60,
  62. 'show_term_form'=> 0,
  63. 'maxlength'=> 255,
  64. ),
  65. ),
  66. );
  67. # from taxonomy
  68. // return array(
  69. // 'taxonomy_autocomplete' => array(
  70. // 'label' => t('Autocomplete term widget (tagging)'),
  71. // 'field types' => array('taxonomy_term_reference'),
  72. // 'settings' => array(
  73. // 'size' => 60,
  74. // 'autocomplete_path' => 'taxonomy/autocomplete',
  75. // ),
  76. // 'behaviors' => array(
  77. // 'multiple values' => FIELD_BEHAVIOR_CUSTOM,
  78. // ),
  79. // ),
  80. // );
  81. //
  82. }
  83. /**
  84. * Implementation of hook_widget_settings
  85. */
  86. #hook_field_widget_settings_form($field, $instance)
  87. function tode_field_widget_settings_form($field, $instance){
  88. dsm($instance, 'tode_field_widget_settings_form : $instance');
  89. dsm($field, 'field');
  90. $widget = $instance['widget'];
  91. $settings = $widget['settings'];
  92. $form['tode'] = array(
  93. '#type' => 'fieldset',
  94. '#title' => t('Settings for terms'),
  95. '#collapsible' => TRUE,
  96. '#weight' => 10,
  97. '#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'),
  98. );
  99. $form['tode']['maxlength'] = array(
  100. '#type' => 'textfield',
  101. '#title' => t('Maximum length of term'),
  102. '#default_value' => $settings['maxlength'],
  103. '#element_validate' => array('_tode_widget_settings_maxlength_validate'),
  104. '#required' => TRUE,
  105. '#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).'),
  106. );
  107. $form['tode']['show_term_form'] = array(
  108. '#type' => 'checkbox',
  109. '#title' => t('Show taxonomy term edit form ?'),
  110. '#default_value' => $settings['show_term_form'],
  111. );
  112. //
  113. /*
  114. TODO active_tags : leave this in place because of the multi terms feature in the future
  115. */
  116. // if (module_exists('active_tags')) {
  117. // $form['update']['active_tags'] = array(
  118. // '#type' => 'checkbox',
  119. // '#title' => t('Use Active Tags style widget'),
  120. // '#default_value' => isset($widget['active_tags']) ? $widget['active_tags'] : 0,
  121. // '#description' => t('Use the Active Tags module to improve the usability of this autocomplete widget.'),
  122. // );
  123. // }
  124. return $form;
  125. }
  126. // function tode_form_content_field_edit_form_alter(&$form, &$form_state){
  127. // dsm('tode_form_content_field_edit_form_alter');
  128. // /*
  129. // TODO add the multi terms feature
  130. // */
  131. // if($form['type']['#value'] == 'content_taxonomy' && $form['widget_module']['#value'] == 'tode'){
  132. // $form['field']['multiple']['#default_value'] = 0; // 0 here is 1 value for the cck field
  133. // $form['field']['multiple']['#prefix'] = '<div style="display:none">';
  134. // $form['field']['multiple']['#suffix'] = '</div>';
  135. // }
  136. // }
  137. function _tode_widget_settings_maxlength_validate($element, &$form_state) {
  138. $value = $form_state['values']['maxlength'];
  139. if (!is_numeric($value) || intval($value) != $value || $value <= 0) {
  140. form_error($element, t('"Maximum length" must be a positive integer.'));
  141. }
  142. }
  143. /**
  144. * Implementation of FAPI hook_elements().
  145. *
  146. * Any FAPI callbacks needed for individual widgets can be declared here,
  147. * and the element will be passed to those callbacks for processing.
  148. *
  149. * Drupal will automatically theme the element using a theme with
  150. * the same name as the hook_elements key.
  151. *
  152. * Autocomplete_path is not used by text_widget but other widgets can use it
  153. * (see nodereference and userreference).
  154. *
  155. * http://drupal.org/node/224333#hook_element_info
  156. *
  157. */
  158. #hook_element_info()
  159. function tode_element_info() {
  160. return array(
  161. 'tode' => array(
  162. '#input' => TRUE,
  163. '#columns' => array('value'),
  164. '#delta' => 0,
  165. '#process' => array('tode_element_process'),
  166. ),
  167. );
  168. }
  169. /**
  170. * Implementation of hook_field_widget_form().
  171. */
  172. function tode_field_widget_form(&$form, &$form_state, $field, $instance, $langcode, $items, $delta, $element) {
  173. dsm('tode_field_widget_form');
  174. dsm($items, 'items');
  175. dsm($element, '$element');
  176. /*
  177. $element['#entity_type']
  178. $element['#bundle']
  179. $element['#field_name']
  180. $element['#language']
  181. $element['#columns']
  182. $element['#title']
  183. $element['#description']
  184. $element['#required']
  185. $element['#delta']
  186. $element['#language']
  187. */
  188. # thats the original D6 $element
  189. // $element = array(
  190. // '#type' => 'tode',
  191. // '#default_value' => isset($items) ? $items : NULL,
  192. // '#vid' => $field['vid'],
  193. // );
  194. # example
  195. // // use += to avoid overwriting incoming $element
  196. // $element['value'] += array(
  197. // // Fill in $element.
  198. // );
  199. // $tags = array();
  200. // foreach ($items as $item) {
  201. // $tags[$item['tid']] = isset($item['taxonomy_term']) ? $item['taxonomy_term'] : taxonomy_term_load($item['tid']);
  202. // }
  203. $term_name = '';
  204. $term_tid = 0;
  205. if(count($items)){
  206. $term = isset($items[0]['taxonomy_term']) ? $items[0]['taxonomy_term'] : taxonomy_term_load($items[0]['tid']);
  207. $term_name = $term->term_name;
  208. $term_tid = $term->tid;
  209. }
  210. $element['tode_tid'] = array('#type' => 'hidden', '#value' => $term_tid,'#delta' => $element['#delta'],);
  211. $element += array(
  212. '#type' => 'textfield',
  213. '#default_value' => $term_name,
  214. '#size' => $instance['widget']['settings']['size'],
  215. '#maxlength' => $instance['widget']['settings']['maxlength'],
  216. '#element_validate' => array('tode_validate'),
  217. );
  218. # add the term edit form
  219. // if(isset($value))
  220. // _tode_add_term_form($element, $term, $widget['show_term_form']);
  221. return $element;
  222. }
  223. /**
  224. * Process an individual element.
  225. *
  226. * Build the form element. When creating a form using FAPI #process,
  227. * note that $element['#value'] is already set.
  228. *
  229. */
  230. # OLD NOT USED ANY MORE, TRANSPOSE THIS CODE (ALL OR PART) ON hook_field_widget_form();
  231. function tode_element_process($element, $edit, $form_state, $form) {
  232. // dsm('tode widget process');
  233. // dsm($form, 'form');
  234. // dsm($element, 'element');
  235. $field_name = $element['#field_name'];
  236. $field = $form['#field_info'][$field_name];
  237. $field_key = $element['#columns'][0];
  238. // dsm($field);
  239. $widget = $field['widget'];
  240. $value = NULL;
  241. if (count($element['#default_value'])) {
  242. $term = taxonomy_get_term($element['#default_value'][0][$field_key]);
  243. // dsm($term);
  244. $value = $term->name;
  245. }
  246. # converting the tid to term name on visible value oh the text field, we re-convert terma name to tid on the validat function
  247. $element['#default_value'][0][$field_key] = $value;
  248. $element['#value'][$field_key] = $value;
  249. # memorize the tid for the validate function
  250. if($value)
  251. $element['tode_tid'] = array('#type' => 'hidden', '#value' => $term->tid,'#delta' => $element['#delta'],);
  252. $element[$field_key] = array(
  253. '#type' => 'textfield',
  254. '#default_value' => isset($element['#value'][$field_key]) ? $element['#value'][$field_key] : '',
  255. '#title' => $element['#title'],
  256. '#required' => $element['#required'],
  257. '#description' => $element['#description'],
  258. '#field_name' => $element['#field_name'],
  259. '#type_name' => $element['#type_name'],
  260. '#delta' => $element['#delta'],
  261. '#columns' => $element['#columns'],
  262. '#maxlength' => !empty($field['widget']['maxlength']) ? $field['widget']['maxlength'] : 255,
  263. );
  264. # add the term edit form
  265. if(isset($value))
  266. _tode_add_term_form($element, $term, $widget['show_term_form']);
  267. # 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
  268. if (empty($element[$field_key]['#element_validate']))
  269. $element[$field_key]['#element_validate'] = array();
  270. //
  271. array_unshift($element[$field_key]['#element_validate'], 'tode_validate');
  272. # replace validate with submit added on form alter
  273. // dsm($form_state, 'form_state');
  274. // dsm($element, 'element');
  275. return $element;
  276. }
  277. /**
  278. * _tode_add_term_form($term)
  279. *
  280. */
  281. function _tode_add_term_form(&$element, $term, $show){
  282. module_load_include('inc', 'taxonomy', 'taxonomy.admin');
  283. $term_form = _tode_term_form($term->tid);
  284. // dsm($term_form, 'term_form');
  285. if($term_form){
  286. $term_form['identification']['#prefix'] = '<div style="display:none;">';
  287. $term_form['identification']['#suffix'] = '</div>';
  288. $term_form['advanced']['synonyms']['#prefix'] = '<div style="display:none;">';
  289. $term_form['advanced']['synonyms']['#suffix'] = '</div>';
  290. $term_form['advanced']['weight']['#prefix'] = '<div style="display:none;">';
  291. $term_form['advanced']['weight']['#suffix'] = '</div>';
  292. $term_form['advanced']['parent']['#prefix'] = '<div style="display:none;">';
  293. $term_form['advanced']['parent']['#suffix'] = '</div>';
  294. $term_form['advanced']['relations']['#prefix'] = '<div style="display:none;">';
  295. $term_form['advanced']['relations']['#suffix'] = '</div>';
  296. # change appearence of adavnced fiedset to show both fiedlset inline
  297. $term_form['advanced']['#collapsible'] = FALSE;
  298. $term_form['fields']['#collapsible'] = FALSE;
  299. _tode_trim_options($term_form, 'advanced');
  300. $term_form['advanced']['#attributes'] = array('class'=>'tcu-advanced-options');
  301. $term_form['fields']['#attributes'] = array('class'=>'tcu-term-fields');
  302. foreach($term_form['fields'] as $field_name => $field){
  303. if($field['#type'] == 'textfield')
  304. $field['#size'] = 30;
  305. $term_form['fields'][$field_name] = $field;
  306. }
  307. unset($term_form['submit']);
  308. unset($term_form['delete']);
  309. #unset vid info 'cause is in conflict with the node's vid field
  310. // unset($term_form['vid']);
  311. $element['term_form'] = array(
  312. '#type' => 'fieldset',
  313. '#title' => t('Term edit'),
  314. '#tree' => TRUE,
  315. '#collapsible' => TRUE,
  316. '#collapsed' => FALSE,
  317. '#weight'=>1,
  318. '#group'=>'additional_settings',
  319. );
  320. if(!$show){
  321. $element['term_form']['#prefix'] = '<div style="display:none;">';
  322. $element['term_form']['#suffix'] = '</div>';
  323. }
  324. $term_form = _tode_prefix_form($term_form, 'tode_termform_'.$element['#field_name'].'_');
  325. $element['term_form'] += $term_form;
  326. $element['tode_termform'] = array('#type' => 'hidden', '#value' => 'true','#delta' => $element['#delta'],);
  327. // $element['#prefix'] = '<div class="tode-term-edit-form-box">';
  328. // $element['#suffix'] = '</div>';
  329. // dsm($element, 'element');
  330. }
  331. }
  332. /**
  333. * Validation function for the tode element
  334. *
  335. * parses input and sets the values as needed (tid) for storing the data
  336. */
  337. function tode_validate($element, &$form_state){
  338. dsm('tode_validate');
  339. dsm($form_state, 'form_state');
  340. dsm($element, 'element');
  341. $value = array();
  342. if ($typed_term = $element['#value']) {
  343. $field = field_widget_field($element, $form_state);
  344. dsm($field, 'field');
  345. $vocabularies = array();
  346. foreach ($field['settings']['allowed_values'] as $tree) {
  347. if ($vocabulary = taxonomy_vocabulary_machine_name_load($tree['vocabulary'])) {
  348. $vocabularies[$vocabulary->vid] = $vocabulary;
  349. }
  350. }
  351. // See if the term exists in the chosen vocabulary and return the tid;
  352. // otherwise, create a new 'autocreate' term for insert/update.
  353. if($tid = $element['tode_tid']['#value']){
  354. $term = taxonomy_term_load($tid);
  355. }else{
  356. $vocabulary = reset($vocabularies);
  357. $term = array(
  358. 'tid' => 'autocreate',
  359. 'vid' => $vocabulary->vid,
  360. 'name' => $typed_term,
  361. 'vocabulary_machine_name' => $vocabulary->machine_name,
  362. );
  363. }
  364. dsm($term, '$term');
  365. $value[] = (array)$term;
  366. }
  367. dsm($value, '$value');
  368. form_set_value($element, $value, $form_state);
  369. // $field_name = $element['#field_name'];
  370. // $field = content_fields($field_name, $element['#type_name']);
  371. // $field_key = $element['#columns'][0];
  372. //
  373. // #if the element parents array contains the field key, we have to remove it
  374. // #because otherwise form_set_value won't work. (still the question why is it in)
  375. // if ($element['#parents'][count($element['#parents'])-1] == $field_key) {
  376. // array_pop($element['#parents']);
  377. // array_pop($element['#array_parents']);
  378. // }
  379. //
  380. // $term_name = $element['#value'] != '' ? $element['#value'] : ($element['#default_value'] != '' ? $element['#default_value'] : NULL);
  381. // // dsm($term_name, 'term_name');
  382. // $form_state['values']['tode_termform_'.$field_name.'_name'] = $term_name;
  383. //
  384. // $tid = isset($form_state['values'][$field_name]['tode_tid']) ? $form_state['values'][$field_name]['tode_tid'] : NULL;
  385. // // dsm($tid, 'tid');
  386. // $value = array();
  387. // if($tid){
  388. // $value[$tid] = $tid;
  389. // }else{
  390. // # if no tid it says that we create a node so a term
  391. // $term = array(
  392. // "vid" => $field['vid'],
  393. // "name" => $term_name,
  394. // "parent" => $field['widget']['extra_parent'] ? $field['widget']['extra_parent'] : content_taxonomy_field_get_parent($field),
  395. // );
  396. // $status = taxonomy_save_term($term);
  397. // $value[$term['tid']] = $term['tid'];
  398. // }
  399. //
  400. // $values = content_transpose_array_rows_cols(array($element['#columns'][0] => $value));
  401. // // dsm($values, 'values');
  402. // form_set_value($element, $values, $form_state);
  403. //
  404. // // dsm($element, 'element');
  405. // // dsm($form_state, 'form_state');
  406. // form_set_value($element, $value, $form_state);
  407. }
  408. /**
  409. * Implements hook_field_widget_error().
  410. */
  411. function tode_field_widget_error($element, $error, $form, &$form_state) {
  412. # use this to set errors
  413. form_error($element['value'], $error['message']);
  414. }
  415. /**
  416. * implementation of hook_nodeapi()
  417. *
  418. * process the tode term on node create or update
  419. * we make this on nodeapi cause we can't cache field save from a widget … mayde in D7
  420. *
  421. */
  422. /*
  423. TODO add term translation feature
  424. */
  425. function tode_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL){
  426. // dsm($op, 'tode nodeapi : op');
  427. switch($op){
  428. // case 'presave':
  429. case 'update':
  430. // tode_save($node);
  431. break;
  432. }
  433. }
  434. /**
  435. * submit values
  436. */
  437. function tode_save($node) {
  438. module_load_include('inc', 'taxonomy', 'taxonomy.admin');
  439. // dsm('tode save');
  440. // dsm($node, 'tode submit : node');
  441. $tode_fields = _tode_get_tode_fields_def($node->type);
  442. if(!count($tode_fields))
  443. return;
  444. foreach ($tode_fields as $field_name => $field) {
  445. $values = array();
  446. $prefix = 'tode_termform_'.$field_name.'_';
  447. foreach ($node as $key => $value) {
  448. if(strpos($key, $prefix) !== FALSE)
  449. $values[$key] = $value;
  450. }
  451. // dsm($values, 'values');
  452. $values = _tode_prefix_form($values, $prefix, FALSE);
  453. // dsm($values, 'values');
  454. $array_term = (array)taxonomy_get_term($values['tid']);
  455. foreach ($values as $key => $value) {
  456. if(is_array($value))
  457. $values += $value;
  458. }
  459. $array_term = (array)taxonomy_get_term($values['tid']);
  460. // dsm($values, 'values');
  461. $form_state = array();
  462. $form_state['values'] = $values;
  463. $form_state['values']['op'] = t('Save');
  464. // dsm($form_state, 'form_state');
  465. drupal_execute('taxonomy_form_term', $form_state, taxonomy_vocabulary_load($array_term['vid']), $array_term);
  466. }
  467. }
  468. /**
  469. * theme_tode
  470. *
  471. */
  472. function theme_tode($element) {
  473. return $element['#children'];
  474. }
  475. /**
  476. * Implementation of hook_form_alter().
  477. *
  478. * node deletion to delete also the tode term
  479. *
  480. */
  481. function tode_form_alter(&$form, $form_state, $form_id){
  482. if (stripos($form_id, 'node_delete_confirm') !== false){
  483. // dsm($form_id, 'tode form_alter form_id');
  484. /*
  485. TODO test deletion
  486. */
  487. _tode_node_delete_form_alter($form, $form_state);
  488. // dsm($form);
  489. }
  490. }
  491. function _tode_node_delete_form_alter(&$form){
  492. // dsm($form, '_tode_node_delete_form_alter : form');
  493. #get the node
  494. $node = $form['#parameters'][2];
  495. // dsm($node);
  496. # why that tnid ???
  497. // if($node->tnid != 0)
  498. // return;
  499. #get the fields defenition of node type
  500. $tode_fields = _tode_get_tode_fields_def($node->type);
  501. //dsm($tode_fields);
  502. if(count($tode_fields) == 0)
  503. return;
  504. #get the terms value
  505. $terms = array();
  506. $tids = array();
  507. foreach ($tode_fields as $field_name => $field) {
  508. foreach ($node->$field_name as $term) {
  509. $term = taxonomy_get_term($term['value']);
  510. $terms[] = $term->name;
  511. $tids[] = $term->tid;
  512. }
  513. }
  514. if(count($terms)){
  515. /*
  516. TODO add here a checkbox to select terms to delete
  517. */
  518. #add some warning in form description
  519. $form['description']['#value'] .= '<br />'.t('this will also delete taxonomy terms : %terms', array('%terms'=>implode(', ', $terms)));
  520. $form['tode_delete'] = array( '#type' => 'hidden', '#value' => serialize($tids),);
  521. $form['tode_terms'] = array('#type' => 'hidden', '#value' => serialize($terms),);
  522. $form['#submit'][] = 'tode_delete_submit';
  523. }
  524. }
  525. function tode_delete_submit($form, &$form_state){
  526. $tids = unserialize($form['tode_delete']['#value']);
  527. foreach ($tids as $tid)
  528. taxonomy_del_term($tid);
  529. $terms = unserialize($form['tode_terms']['#value']);
  530. drupal_set_message(t('Following Taxonomy terms have been deleted : %terms', array('%terms' => implode(', ', $terms) )), 'status');
  531. }
  532. /**
  533. * HELPERS
  534. */
  535. //
  536. // function _tode_prefix_keys($k){
  537. // if(strpos('#', $kk) == false)
  538. // return $prefix.$k;
  539. // }
  540. function _tode_clean_form($form){
  541. foreach ($form as $key => $value) {
  542. if(strpos($key,'#') !== false){
  543. unset($form[$key]);
  544. }elseif(is_array($value)){
  545. $form[$key] = _tode_clean_form($value);
  546. }
  547. }
  548. return $form;
  549. }
  550. function _tode_prefix_form($form, $prefix = '', $add = TRUE){
  551. foreach ($form as $key => $value) {
  552. if(strpos($key,'#') === false){
  553. if($value['#type'] == 'fieldset' || (!$add && is_array($value)))
  554. $value = _tode_prefix_form($value, $prefix, $add);
  555. if($add){
  556. $form[$prefix.$key] = $value;
  557. unset($form[$key]);
  558. }elseif(strpos($key, $prefix) !== false ){
  559. $form[str_replace($prefix, '', $key)] = $value;
  560. unset($form[$key]);
  561. }
  562. }
  563. }
  564. return $form;
  565. }
  566. /**
  567. * _tode_term_form($tid)
  568. *
  569. */
  570. function _tode_term_form($tid){
  571. if ($array_term = (array)taxonomy_get_term($tid)) {
  572. $form_state = array();
  573. $term_form = drupal_retrieve_form('taxonomy_form_term', $form_state, taxonomy_vocabulary_load($array_term['vid']), $array_term);
  574. drupal_prepare_form('taxonomy_form_term', $term_form, $form_state);
  575. return $term_form;
  576. }else{
  577. return false;
  578. }
  579. }
  580. /**
  581. * _tode_trim_options(&$form, $element)
  582. *
  583. */
  584. function _tode_trim_options(&$form, $item){
  585. foreach ($form[$item] as $field_name => $field) {
  586. if(((is_array($field)) && $field['#type'] == 'select') && $field['#multiple']){
  587. $options = $field['#options'];
  588. for ($i=0; $i < count($options); $i++) {
  589. if(!isset($options[$i]->option))
  590. continue;
  591. $op = array();
  592. foreach ($options[$i]->option as $key => $value)
  593. $op[$key] = strlen($value) > 25 ? substr_replace ($value, ' [...] ', 15, -10) : $value; // affiche 'abc...xyz'
  594. $options[$i]->option = $op;
  595. }
  596. $field['#options'] = $options;
  597. $form[$item][$field_name] = $field;
  598. }
  599. }
  600. }
  601. /**
  602. *
  603. */
  604. function _tode_get_tode_fields_def($type){
  605. // dsm($type, '_tode_get_fields_def');
  606. #get the fields defenition of node type
  607. $type_fields = content_types($type);
  608. // dsm($type_fields, 'type_fields definition');
  609. #get the tode node fields
  610. $tode_fields = array();
  611. foreach ($type_fields['fields'] as $field_name => $field) {
  612. if($field['widget']['type'] == 'tode')
  613. $tode_fields[$field_name] = $field;
  614. }
  615. return $tode_fields;
  616. }