tode.module 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704
  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) ? i18n_taxonomy_term_name($term, $node->language) : '',
  197. '#size' => $instance['widget']['settings']['size'],
  198. '#maxlength' => $instance['widget']['settings']['maxlength'],
  199. '#element_validate' => array('tode_validate'),
  200. );
  201. # add the term edit form
  202. if(isset($term))
  203. _tode_add_term_form($form, $term, $instance, $element['#delta']);
  204. // dsm($form, 'end tode_field_widget_form :: $form');
  205. return $element;
  206. }
  207. /**
  208. * _tode_add_term_form($term)
  209. *
  210. * show the complete taxonomy term form if feature is enabled
  211. *
  212. */
  213. function _tode_add_term_form(&$form, $term, $instance, $delta){
  214. // dsm('- - - - _tode_add_term_form');
  215. module_load_include('inc', 'taxonomy', 'taxonomy.admin');
  216. $term_form = _tode_term_form($term);
  217. // dsm($term_form, 'term_form');
  218. if($term_form){
  219. unset($term_form['actions']);
  220. unset($term_form['#action']);
  221. unset($term_form['#method']);
  222. #unset vid info 'cause is in conflict with the node's vid field
  223. unset($term_form['vid']);
  224. $term_form = _tode_clean_form($term_form);
  225. $prefix = 'tode_termform_'.$instance['field_name'];
  226. $term_form = _tode_prefix_form($term_form, $prefix.'_');
  227. $visible = $instance['widget']['settings']['show_term_form'];
  228. $form[$prefix] = array(
  229. '#type' => 'fieldset',
  230. '#title' => t('Term edit'),
  231. '#tree' => TRUE,
  232. '#collapsible' => TRUE,
  233. '#collapsed' => FALSE,
  234. '#weight'=>1,
  235. // '#group'=>'additional_settings',
  236. '#prefix' => $visible ? null : '<div style="display:none;">',
  237. '#suffix' => $visible ? null : '</div>',
  238. );
  239. $form[$prefix] += $term_form;
  240. // $form['tode_termform'] = array('#type' => 'hidden', '#value' => 'true','#delta' => $delta,);
  241. }
  242. }
  243. /**
  244. * Form element validate handler for tode parent term autocomplete element.
  245. */
  246. function tode_parent_autocomplete_validate($element, &$form_state) {
  247. // dsm('- - - - tode_autocomplete_validate');
  248. // dsm($element, '$element');
  249. // dsm($form_state, '$form_state');
  250. $value = array();
  251. if ($typed_term = $element['#value']) {
  252. // Translate term names into actual terms.
  253. // See if the term exists in the chosen vocabulary and return the tid;
  254. // otherwise, set error.
  255. if ($possibilities = taxonomy_term_load_multiple(array(), array('name' => trim($typed_term), 'vid' => $form_state['values']['tode_vid']))) {
  256. $term = array_pop($possibilities);
  257. $value = (array)$term;
  258. }
  259. else {
  260. form_error($element, t('Parent term can only be an existing term.'));
  261. }
  262. }
  263. //
  264. // dsm('form_set_value');
  265. form_set_value($element, $value, $form_state);
  266. }
  267. /**
  268. * Validation function for the tode element
  269. *
  270. * parses input and sets the values as needed (tid) for storing the data
  271. */
  272. function tode_validate($element, &$form_state){
  273. // dsm('- - - - tode_validate');
  274. // dsm($form_state, 'form_state');
  275. // dsm($element, 'element');
  276. $node = $form_state['node'];
  277. /*
  278. TODO term translation (entity translate + node title question)
  279. */
  280. $value = array();
  281. if ($typed_term = $element['#value']) {
  282. $field = field_widget_field($element, $form_state);
  283. // dsm($field, 'field');
  284. $vocabularies = array();
  285. foreach ($field['settings']['allowed_values'] as $tree) {
  286. if ($vocabulary = taxonomy_vocabulary_machine_name_load($tree['vocabulary'])) {
  287. $vocabularies[$vocabulary->vid] = $vocabulary;
  288. }
  289. }
  290. // get the parent term tid or 0 (no parents)
  291. $parent_tid = isset($form_state['values']['tode_parent_term']['tid']) ? $form_state['values']['tode_parent_term']['tid'] : 0;
  292. // See if the term already exists and load the term
  293. // otherwise, create a new 'autocreate' term for insert.
  294. if($tid = $form_state['values']['tode_tid']){
  295. $term = taxonomy_term_load($tid);
  296. $term->name = $typed_term;
  297. $term->parent = $parent_tid;
  298. }else{
  299. $vocabulary = reset($vocabularies);
  300. $term = (object)array(
  301. // 'tid' => 'autocreate', // autocreate not nbeeded with direct taxonomy_term_save
  302. 'vid' => $vocabulary->vid,
  303. 'name' => $typed_term,
  304. 'vocabulary_machine_name' => $vocabulary->machine_name,
  305. 'parent' => $parent_tid,
  306. );
  307. taxonomy_term_save($term); // save here the new term to directly get the tid on hook_node_validate
  308. }
  309. // dsm($term, '$term');
  310. $value = (array)$term;
  311. }
  312. // dsm($value, '$value');
  313. form_set_value($element, $value, $form_state);
  314. }
  315. /**
  316. * Implements hook_field_widget_error().
  317. */
  318. function tode_field_widget_error($element, $error, $form, &$form_state) {
  319. # use this to set errors
  320. form_error($element['value'], $error['message']);
  321. }
  322. /**
  323. * Implements hook_node_validate().
  324. *
  325. * use to save the all term form (steel have to be debuged)
  326. *
  327. */
  328. function tode_node_validate($node, $form, &$form_state){
  329. // dsm('- - - tode_node_validate');
  330. // dsm($node, '$node');
  331. // dsm($form, '$form');
  332. // dsm($form_state, '$form_state');
  333. module_load_include('inc', 'taxonomy', 'taxonomy.admin');
  334. // module_load_include('inc', 'i18n_string', 'i18n_string.pages');
  335. //
  336. $tode_fields = _tode_get_tode_fields_def($node);
  337. // dsm($tode_fields, '$tode_fields');
  338. if(!count($tode_fields))
  339. return;
  340. $language = $node->language;
  341. $default_language = language_default('language');
  342. // dsm($default_language, '$default_language');
  343. foreach ($tode_fields as $field_name => $field) {
  344. // retreive the prefixed termfom values (hidden or visible)
  345. $prefix = 'tode_termform_'.$field_name;
  346. // if we do not have the term form (node creation)
  347. if( !isset($form_state['values'][$prefix]) ){
  348. $tode_field_term_value = $form_state['values'][$field_name]['und'][0]; // on node creation field language is always to und (sure ?)
  349. // test the language, if not default language create the term name translation
  350. if( $form_state['values']['language'] != 'und' || $form_state['values']['language'] != $default_language){
  351. $context= array('term',$tode_field_term_value['tid'],'name');
  352. i18n_string_textgroup('taxonomy')->update_translation($context, $language, $tode_field_term_value['name']);
  353. }
  354. continue;
  355. }else{
  356. // retreive the initial tode_field language
  357. $init_language = $form[$field_name]['#language'];
  358. // retreive the value of term field, to get the typed term name
  359. $tode_field_term_value = $form_state['values'][$field_name][$init_language][0];
  360. // dsm($tode_field_term_value, '$tode_field_term_value');
  361. $values = _tode_prefix_form($form_state['values'][$prefix], $prefix.'_', FALSE);
  362. // dsm($values, 'values');
  363. if($language == 'und' || $language == $default_language || !module_exists('i18n_taxonomy')){
  364. // define the form_state for term_form submit
  365. $new_term_form_state = array(
  366. 'build_info'=>array(
  367. 'args'=>array(0=>(object)$tode_field_term_value),
  368. ),
  369. "values"=>array(
  370. 'name'=> $tode_field_term_value['name'], // replace the original (hidden) term name value by the typed in the the entity field
  371. 'op'=> t('Save'),
  372. )
  373. );
  374. // add new values to form_state
  375. $new_term_form_state['values'] += $values;
  376. // dsm($new_term_form_state, 'form_state');
  377. drupal_form_submit('taxonomy_form_term', $new_term_form_state);
  378. }else{
  379. $context= array('term',$values['tid'],'name');
  380. i18n_string_textgroup('taxonomy')->update_translation($context, $language, $tode_field_term_value['name']);
  381. }
  382. }
  383. }
  384. }
  385. /**
  386. * theme_tode
  387. *
  388. */
  389. // function theme_tode($element) {1
  390. // dsm('theme_tode');
  391. // dsm($element, '$element');
  392. // return $element['#children'];
  393. // }
  394. /**
  395. * Implementation of hook_form_alter().
  396. *
  397. * node deletion to delete also the tode term
  398. *
  399. */
  400. function tode_form_alter(&$form, $form_state, $form_id){
  401. /*
  402. TODO block the deletion if tode term has children !! cause will delete them to …
  403. */
  404. if (stripos($form_id, 'node_delete_confirm') !== false){
  405. // dsm($form_id, 'tode form_alter form_id');
  406. _tode_node_delete_form_alter($form, $form_state);
  407. // dsm($form);
  408. }else if(stripos($form_id, 'node_admin_content') !== false){
  409. if(isset($form['operation']) && $form['operation']['#value'] == 'delete'){
  410. // dsm($form, 'node_admin_content form');
  411. // dsm($form_state, 'form_state');
  412. _tode_nodes_delete_form_alter($form, $form_state);
  413. }
  414. }
  415. }
  416. function _tode_node_delete_form_alter(&$form, $form_state){
  417. // dsm($form, '_tode_node_delete_form_alter : form');
  418. // get the node
  419. $node = $form['#node'];
  420. // dsm($node, '$node');
  421. #get the fields defenition of node type
  422. $tode_fields = _tode_get_tode_fields_def($node);
  423. // dsm($tode_fields);
  424. if(count($tode_fields) == 0)
  425. return;
  426. #get the terms value
  427. $terms = array('names'=>array(), 'tids'=>array());
  428. foreach ($tode_fields as $field_name => $field)
  429. _tode_populate_terms_node_delete($terms, $node->$field_name);
  430. _tode_node_delete_prepare_form($form, $terms);
  431. }
  432. function _tode_nodes_delete_form_alter(&$form, $form_state){
  433. // dsm($form, '_tode_nodes_delete_form_alter : form');
  434. $nodes = array();
  435. foreach ($form_state['values']['nodes'] as $nid => $actif)
  436. if($actif)
  437. $nodes[] = node_load($nid);
  438. #get the terms value
  439. $terms = array('names'=>array(), 'tids'=>array());
  440. foreach ($nodes as $node) {
  441. #get the fields definition of node type
  442. $tode_fields = _tode_get_tode_fields_def($node);
  443. //dsm($tode_fields);
  444. if(count($tode_fields) == 0)
  445. continue;
  446. foreach ($tode_fields as $field_name => $field)
  447. _tode_populate_terms_node_delete($terms, $node->$field_name);
  448. }
  449. _tode_node_delete_prepare_form($form, $terms);
  450. }
  451. function _tode_populate_terms_node_delete(&$terms, $tode_field){
  452. foreach ($tode_field as $language) {
  453. foreach ($language as $term) {
  454. $term = taxonomy_term_load($term['tid']);
  455. if(!in_array($term->tid, $terms['tids'])){
  456. $terms['names'][] = $term->name;
  457. $terms['tids'][] = $term->tid;
  458. }
  459. }
  460. }
  461. }
  462. function _tode_node_delete_prepare_form(&$form, $terms){
  463. if(count($terms)){
  464. /*
  465. TODO add here a checkbox to select terms to delete
  466. */
  467. #add some warning in form description
  468. $form['description']['#markup'] .= '<br />'.t('this will also delete taxonomy terms : %terms', array('%terms'=>implode(', ', $terms['names'])));
  469. $form['tode_delete'] = array( '#type' => 'hidden', '#value' => serialize($terms['tids']),);
  470. $form['tode_terms'] = array('#type' => 'hidden', '#value' => serialize($terms['names']),);
  471. $form['#submit'][] = 'tode_delete_submit';
  472. }
  473. }
  474. function tode_delete_submit($form, &$form_state){
  475. $tids = unserialize($form['tode_delete']['#value']);
  476. foreach ($tids as $tid)
  477. taxonomy_term_delete($tid);
  478. $terms = unserialize($form['tode_terms']['#value']);
  479. drupal_set_message(t('Following Taxonomy terms have been deleted : %terms', array('%terms' => implode(', ', $terms) )), 'status');
  480. }
  481. /**
  482. * HELPERS
  483. */
  484. //
  485. // function _tode_prefix_keys($k){
  486. // if(strpos('#', $kk) == false)
  487. // return $prefix.$k;
  488. // }
  489. function _tode_clean_form($form, $level = 0){
  490. foreach ($form as $key => $value) {
  491. if(strpos($key,'#') !== false || $key == 'form_build_id' || $key == 'form_id' || $key == 'form_token'){
  492. if( $level == 0 || $key == "#element_validate")
  493. unset($form[$key]);
  494. }elseif(is_array($value)){
  495. $form[$key] = _tode_clean_form($value, $level+1);
  496. }
  497. }
  498. return $form;
  499. }
  500. function _tode_prefix_form($form, $prefix = '', $add = TRUE){
  501. foreach ($form as $key => $value) {
  502. if(strpos($key,'#') === false){
  503. if((isset($value['#type']) && $value['#type'] == 'fieldset') || (!$add && is_array($value)))
  504. $value = _tode_prefix_form($value, $prefix, $add);
  505. if($add){
  506. $form[$prefix.$key] = $value;
  507. unset($form[$key]);
  508. }elseif(strpos($key, $prefix) !== false ){
  509. $form[str_replace($prefix, '', $key)] = $value;
  510. unset($form[$key]);
  511. }
  512. }
  513. }
  514. return $form;
  515. }
  516. /**
  517. * _tode_term_form($tid)
  518. *
  519. */
  520. function _tode_term_form($term){
  521. // dsm('_tode_term_form');
  522. if ($term) {
  523. $form_state = array(
  524. 'build_info'=>array(
  525. 'args'=>array(0=>$term)
  526. ),
  527. 'method'=>'post',
  528. );
  529. // function taxonomy_form_term($form, &$form_state, $edit = array(), $vocabulary = NULL) {
  530. $term_form = drupal_retrieve_form('taxonomy_form_term', $form_state);
  531. drupal_prepare_form('taxonomy_form_term', $term_form, $form_state);
  532. return $term_form;
  533. }else{
  534. return false;
  535. }
  536. }
  537. /**
  538. * _tode_trim_options(&$form, $element)
  539. *
  540. */
  541. function _tode_trim_options(&$form, $item){
  542. foreach ($form[$item] as $field_name => $field) {
  543. if(((is_array($field)) && $field['#type'] == 'select') && $field['#multiple']){
  544. $options = $field['#options'];
  545. for ($i=0; $i < count($options); $i++) {
  546. if(!isset($options[$i]->option))
  547. continue;
  548. $op = array();
  549. foreach ($options[$i]->option as $key => $value)
  550. $op[$key] = strlen($value) > 25 ? substr_replace ($value, ' [...] ', 15, -10) : $value; // affiche 'abc...xyz'
  551. $options[$i]->option = $op;
  552. }
  553. $field['#options'] = $options;
  554. $form[$item][$field_name] = $field;
  555. }
  556. }
  557. }
  558. /**
  559. * OK OK OK
  560. */
  561. function _tode_get_tode_fields_def($node){
  562. // dsm($node, '_tode_get_fields_def');
  563. #get the fields defenition of node type
  564. $type_fields = field_info_instances('node');
  565. // dsm($type_fields, 'type_fields definition');
  566. #get the tode node fields
  567. $tode_fields = array();
  568. foreach ($type_fields[$node->type] as $field_name => $field) {
  569. if($field['widget']['type'] == 'tode')
  570. $tode_fields[$field_name] = $field;
  571. }
  572. return $tode_fields;
  573. }