tode.module 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227
  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. * <?php
  12. * // automatic node titles php snippet for translation
  13. * $items = field_get_items('node', $node, 'field_tode_program');
  14. * return t($items[0]['name']);
  15. * ?>
  16. *
  17. *
  18. */
  19. /**
  20. * Implements hook_views_api().
  21. */
  22. /*
  23. TODO hook_views_api().
  24. */
  25. // function tode_views_api() {
  26. // return array(
  27. // 'api' => 3,
  28. // 'path' => drupal_get_path('module', 'tode') . '/views',
  29. // );
  30. // }
  31. /**
  32. * Implementation of hook_theme().
  33. */
  34. function tode_theme() {
  35. return array(
  36. 'tode' => array(
  37. 'arguments' => array('element' => NULL),
  38. ),
  39. );
  40. }
  41. /**
  42. * Implementation of hook_init().
  43. */
  44. function tode_init() {
  45. // File hooks and callbacks may be used by any module.
  46. drupal_add_css(drupal_get_path('module', 'tode') .'/tode.css');
  47. }
  48. /**
  49. * Implementation of hook_field_widget_info().
  50. */
  51. function tode_field_widget_info() {
  52. return array(
  53. 'tode' => array(
  54. 'label' => t('Tode (create then update one unique term)'),
  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'=> -1,
  63. 'choose_term_parent'=> -1,
  64. 'maxlength'=> 255,
  65. 'redirect_term_to_node' => -1,
  66. 'show_create_tode' => -1,
  67. ),
  68. ),
  69. );
  70. }
  71. /**
  72. * Implementation of hook_widget_settings
  73. */
  74. function tode_field_widget_settings_form($field, $instance){
  75. // dsm($instance, 'tode_field_widget_settings_form : $instance');
  76. // dsm($field, 'field');
  77. $widget = $instance['widget'];
  78. $settings = $widget['settings'];
  79. // '#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')
  80. $form['maxlength'] = array(
  81. '#type' => 'textfield',
  82. '#title' => t('Maximum length of term'),
  83. '#default_value' => $settings['maxlength'],
  84. '#element_validate' => array('_tode_widget_settings_maxlength_validate'),
  85. '#required' => TRUE,
  86. '#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).'),
  87. );
  88. /*
  89. TODO complete the all flow of this
  90. */
  91. $form['show_term_form'] = array(
  92. '#type' => 'checkbox',
  93. '#title' => t('Show taxonomy term edit form ?'),
  94. '#default_value' => $settings['show_term_form'],
  95. );
  96. $form['choose_term_parent'] = array(
  97. '#type' => 'checkbox',
  98. '#title' => t('Enable taxonomy term parent selection ?'),
  99. '#default_value' => $settings['choose_term_parent'],
  100. );
  101. $form['redirect_term_to_node'] = array(
  102. '#type' => 'checkbox',
  103. '#title' => t('Rewrite all term link to theire tode node ?'),
  104. '#default_value' => $settings['redirect_term_to_node'],
  105. );
  106. $form['redirect_node_to_term'] = array(
  107. '#type' => 'checkbox',
  108. '#title' => t('Rewrite all node link to theire term node ?'),
  109. '#default_value' => $settings['redirect_node_to_term'],
  110. );
  111. $form['show_create_tode'] = array(
  112. '#type' => 'checkbox',
  113. '#title' => t('Show create "tode" on term fields about this tode\'s vocabulary ?'),
  114. '#default_value' => $settings['show_create_tode'],
  115. );
  116. return $form;
  117. }
  118. function _tode_widget_settings_maxlength_validate($element, &$form_state) {
  119. // dsm('_tode_widget_settings_maxlength_validate');
  120. // dsm($element, '$element');
  121. // dsm($form_state, '$form_state');
  122. $widget = $form_state['values']['instance']['widget'];
  123. $value = $widget['settings']['maxlength'];
  124. if (!is_numeric($value) || intval($value) != $value || $value <= 0) {
  125. form_error($element, t('"Maximum length" must be a positive integer.'));
  126. }
  127. # TODO checke that node to term and term to node can't be chexked together
  128. }
  129. /**
  130. * Implementation of FAPI hook_elements().
  131. *
  132. * Any FAPI callbacks needed for individual widgets can be declared here,
  133. * and the element will be passed to those callbacks for processing.
  134. *
  135. * Drupal will automatically theme the element using a theme with
  136. * the same name as the hook_elements key.
  137. *
  138. * Autocomplete_path is not used by text_widget but other widgets can use it
  139. * (see nodereference and userreference).
  140. *
  141. * http://drupal.org/node/224333#hook_element_info
  142. *
  143. */
  144. #hook_element_info() WHY ??
  145. /*
  146. function tode_element_info(){
  147. return array(
  148. 'tode' => array(
  149. '#input' => TRUE,
  150. '#columns' => array('value'),
  151. '#delta' => 0,
  152. '#process' => array('tode_element_process'),
  153. ),
  154. );
  155. }
  156. */
  157. /**
  158. * Implementation of hook_field_widget_form().
  159. */
  160. function tode_field_widget_form(&$form, &$form_state, $field, $instance, $langcode, $items, $delta, $element) {
  161. // dsm('- - - - tode_field_widget_form');
  162. // dsm($form, '&$form');
  163. // dsm($form_state, '&$form_state');
  164. // dsm($items, 'items');
  165. // dsm($element, '$element');
  166. // dsm($field, '$field');
  167. // dsm($instance, '$instance');
  168. if(isset($form_state['node'])){
  169. $language = $form_state['node']->language;
  170. }else{
  171. $language = null;
  172. }
  173. // dsm($node, '$node');
  174. if(isset($items[$delta])){
  175. $term = taxonomy_term_load($items[$delta]['tid']);
  176. // $term = i18n_taxonomy_term_get_translation($term, $node->language); // marche pas avec localized term
  177. // dsm($term, '$term');
  178. $term_parents = taxonomy_get_parents($term->tid);
  179. // dsm($term_parents, '$term_parents');
  180. $term_parent = array_pop($term_parents);
  181. }
  182. # no need of $node->translation_source because with node translation (not entity fields translation) tid remains
  183. # just have to translate term name on submit
  184. // if( !isset($node->id) && isset($node->translation_source) ){
  185. // }
  186. $form['tode_tid'] = array('#type' => 'hidden', '#value' => isset($term) ? $term->tid : 0,'#delta' => $element['#delta'],);
  187. # parent
  188. if( $instance['widget']['settings']['choose_term_parent'] ){
  189. // add parent form autocomplete if activated
  190. $vocabularies = array();
  191. foreach ($field['settings']['allowed_values'] as $tree)
  192. if ($vocabulary = taxonomy_vocabulary_machine_name_load($tree['vocabulary']))
  193. $vocabularies[$vocabulary->vid] = $vocabulary;
  194. $vocabulary = reset($vocabularies);
  195. // dsm($vocabulary, '$vocabulary');
  196. $form['tode_vid'] = array('#type' => 'hidden', '#value' => $vocabulary->vid,'#delta' => $element['#delta'],);
  197. $form['tode_parent_term'] = array(
  198. '#title' => 'Parent ' . $vocabulary->name,
  199. '#type' => 'textfield',
  200. '#default_value' => isset($term_parent) ? $term_parent->name : '',
  201. '#autocomplete_path' => 'taxonomy/autocomplete' . '/' . $field['field_name'],
  202. '#size' => 60,
  203. '#maxlength' => 1024,
  204. '#element_validate' => array('tode_parent_autocomplete_validate'),
  205. );
  206. }else{
  207. // if parent selection not enabled set the current parent as hidden input
  208. $form['tode_parent_term'] = array(
  209. '#type' => 'hidden',
  210. '#value' => isset($term_parent) ? $term_parent->name : '',
  211. '#delta' => $element['#delta'],
  212. );
  213. }
  214. // set element form item
  215. $element += array(
  216. '#type' => 'textfield',
  217. '#default_value' => isset($term) ? ( module_exists('i18n_taxonomy') ? i18n_taxonomy_term_name($term, $language) : $term->name ) : '',
  218. '#size' => $instance['widget']['settings']['size'],
  219. '#maxlength' => $instance['widget']['settings']['maxlength'],
  220. '#element_validate' => array('tode_widget_validate'),
  221. // '#element_submit' => array('tode_widget_submit'),
  222. );
  223. # add the term edit form
  224. if(isset($term))
  225. _tode_add_term_form($form, $term, $instance, $element['#delta']);
  226. // dsm($form, 'end tode_field_widget_form :: $form');
  227. return $element;
  228. }
  229. /**
  230. * _tode_add_term_form($term)
  231. *
  232. * show the complete taxonomy term form if feature is enabled
  233. *
  234. */
  235. function _tode_add_term_form(&$form, $term, $instance, $delta){
  236. // dsm('- - - - _tode_add_term_form');
  237. module_load_include('inc', 'taxonomy', 'taxonomy.admin');
  238. $term_form = _tode_term_form($term);
  239. // dsm($term_form, 'term_form');
  240. if($term_form){
  241. unset($term_form['actions']);
  242. unset($term_form['#action']);
  243. unset($term_form['#method']);
  244. #unset vid info 'cause is in conflict with the node's vid field
  245. unset($term_form['vid']);
  246. $term_form = _tode_clean_form($term_form);
  247. $prefix = 'tode_termform_'.$instance['field_name'];
  248. $term_form = _tode_prefix_form($term_form, $prefix.'_');
  249. $visible = $instance['widget']['settings']['show_term_form'];
  250. $form[$prefix] = array(
  251. '#type' => 'fieldset',
  252. '#title' => t('Term edit'),
  253. '#tree' => TRUE,
  254. '#collapsible' => TRUE,
  255. '#collapsed' => FALSE,
  256. '#weight'=>1,
  257. // '#group'=>'additional_settings',
  258. '#prefix' => $visible ? null : '<div style="display:none;">',
  259. '#suffix' => $visible ? null : '</div>',
  260. );
  261. $form[$prefix] += $term_form;
  262. // $form['tode_termform'] = array('#type' => 'hidden', '#value' => 'true','#delta' => $delta,);
  263. }
  264. }
  265. /**
  266. * Form element validate handler for tode parent term autocomplete element.
  267. */
  268. function tode_parent_autocomplete_validate($element, &$form_state) {
  269. // dsm('- - - - tode_autocomplete_validate');
  270. // dsm($element, '$element');
  271. // dsm($form_state, '$form_state');
  272. $value = array();
  273. if ($typed_term = $element['#value']) {
  274. // Translate term names into actual terms.
  275. // See if the term exists in the chosen vocabulary and return the tid;
  276. // otherwise, set error.
  277. if ($possibilities = taxonomy_term_load_multiple(array(), array('name' => trim($typed_term), 'vid' => $form_state['values']['tode_vid']))) {
  278. $term = array_pop($possibilities);
  279. $value = (array)$term;
  280. }
  281. else {
  282. form_error($element, t('Parent term can only be an existing term.'));
  283. }
  284. }
  285. //
  286. // dsm('form_set_value');
  287. form_set_value($element, $value, $form_state);
  288. }
  289. /**
  290. * Validation function for the tode element
  291. *
  292. * parses input and sets the values as needed (tid) for storing the data
  293. */
  294. function tode_widget_validate($element, &$form_state){
  295. // dsm('- - - - tode_widget_validate');
  296. // dsm($form_state, 'form_state');
  297. // dsm($element, 'element');
  298. // $node = $form_state['node'];
  299. $value = array();
  300. if ($typed_term = $element['#value']) {
  301. $field = field_widget_field($element, $form_state);
  302. // dsm($field, 'field');
  303. $vocabularies = array();
  304. foreach ($field['settings']['allowed_values'] as $tree) {
  305. if ($vocabulary = taxonomy_vocabulary_machine_name_load($tree['vocabulary'])) {
  306. $vocabularies[$vocabulary->vid] = $vocabulary;
  307. }
  308. }
  309. // get the parent term tid or 0 (no parents)
  310. $parent_tid = isset($form_state['values']['tode_parent_term']['tid']) ? $form_state['values']['tode_parent_term']['tid'] : 0;
  311. // See if the term already exists and load the term
  312. // otherwise, create a new 'autocreate' term for insert.
  313. if($tid = $form_state['values']['tode_tid']){
  314. $term = taxonomy_term_load($tid);
  315. $term->name = $typed_term;
  316. $term->parent = $parent_tid;
  317. }else{
  318. $vocabulary = reset($vocabularies);
  319. $term = (object)array(
  320. 'tid' => 'autocreate', // autocreate not needed with direct taxonomy_term_save [EDIT] autocreate needed because of the hook_submit insted of hook_validate
  321. 'vid' => $vocabulary->vid,
  322. 'name' => $typed_term,
  323. 'vocabulary_machine_name' => $vocabulary->machine_name,
  324. 'parent' => $parent_tid,
  325. );
  326. // taxonomy_term_save($term); // save here the new term to directly get the tid on hook_node_validate
  327. // [EDIT] do not save the term here because it will be save even if node form is not validate
  328. // results term without node or mutiple orfan term
  329. // moving all process on node submit
  330. }
  331. // dsm($term, '$term');
  332. $value = (array)$term;
  333. }
  334. // dsm($value, '$value');
  335. form_set_value($element, $value, $form_state);
  336. }
  337. /**
  338. * Implements hook_field_widget_error().
  339. */
  340. function tode_field_widget_error($element, $error, $form, &$form_state) {
  341. # use this to set errors
  342. form_error($element['value'], $error['message']);
  343. }
  344. /**
  345. * Implements hook_node_submit().
  346. */
  347. function tode_node_submit($node, $form, &$form_state) {
  348. // dsm('- - - tode_node_submit');
  349. // dsm($node, '$node');
  350. // dsm($form, '$form');
  351. // dsm($form_state, '$form_state');
  352. module_load_include('inc', 'taxonomy', 'taxonomy.admin');
  353. // module_load_include('inc', 'i18n_string', 'i18n_string.pages');
  354. //
  355. $tode_fields = _tode_get_node_tode_fields_def($node);
  356. // dsm($tode_fields, '$tode_fields');
  357. if(!count($tode_fields))
  358. return;
  359. $language = $node->language;
  360. $default_language = language_default('language');
  361. // dsm($default_language, '$default_language');
  362. foreach ($tode_fields as $field_name => $field) {
  363. // retreive the prefixed termfom values (hidden or visible)
  364. $prefix = 'tode_termform_'.$field_name;
  365. // if term_form is not available
  366. // it meens that we are on the creation of a node
  367. // hook_node_presave will handle this case
  368. if( !isset($form_state['values'][$prefix]) )
  369. continue;
  370. // else
  371. // we are on the update or on the translation (from initial node)
  372. // so we can go forward
  373. // retreive the initial tode_field language
  374. $init_language = $form[$field_name]['#language'];
  375. // retreive the value of term field, to get the typed term name
  376. if(isset($form_state['values'][$field_name][$init_language][0])){
  377. $tode_field_term_value = $form_state['values'][$field_name][$init_language][0];
  378. }else if(isset($form_state['values'][$field_name][$language][0])){
  379. $tode_field_term_value = $form_state['values'][$field_name][$language][0];
  380. }else if(isset($form_state['values'][$field_name]['und'][0])){
  381. $tode_field_term_value = $form_state['values'][$field_name]['und'][0];
  382. }else{
  383. drupal_set_message('$form_state[values][$field_name][$language][0] is undefined', 'warning');
  384. $tode_field_term_value = false;
  385. }
  386. // dsm($tode_field_term_value, '$tode_field_term_value');
  387. if($tode_field_term_value){
  388. // dsm($form_state['values'][$prefix], '$form_state["values"][$prefix]');
  389. $values = _tode_prefix_form($form_state['values'][$prefix], $prefix.'_', FALSE);
  390. // dsm($values, 'values');
  391. if(module_exists('i18n_taxonomy') && $language != 'und' && $language != $default_language){
  392. $context= array('term',$values['tid'],'name');
  393. i18n_string_textgroup('taxonomy')->update_translation($context, $language, $tode_field_term_value['name']);
  394. $tode_field_term_value['name'] = $values['name'];
  395. }
  396. $parent_tid = $tode_field_term_value['parent'];
  397. $values['parent'] = array($parent_tid => $parent_tid);
  398. // if(!module_exists('i18n_taxonomy') || $language == 'und' || $language == $default_language){
  399. // define the form_state for term_form submit
  400. $new_term_form_state = array(
  401. 'build_info'=>array(
  402. 'args'=>array(0=>(object)$tode_field_term_value),
  403. ),
  404. "values"=>array(
  405. 'name'=> $tode_field_term_value['name'], // replace the original (hidden) term name value by the typed in the the entity field
  406. 'op'=> t('Save'),
  407. )
  408. );
  409. // add new values to form_state
  410. $new_term_form_state['values'] += $values;
  411. // dsm($new_term_form_state, 'form_state');
  412. drupal_form_submit('taxonomy_form_term', $new_term_form_state);
  413. // }else{
  414. }
  415. }
  416. }
  417. /**
  418. * Implements hook_node_presave().
  419. */
  420. function tode_node_presave($node) {
  421. // dsm('- - - tode_node_presave');
  422. // dsm($node, 'node');
  423. if(isset($node->nid))
  424. return;
  425. $tode_fields = _tode_get_node_tode_fields_def($node);
  426. if(!count($tode_fields))
  427. return;
  428. $default_language = language_default('language');
  429. // purpose of that is to directly atribute the right language to the term
  430. foreach ($tode_fields as $field_name => $field){
  431. $tode_field = $node->$field_name;
  432. if(!isset($tode_field[$node->language][0]))
  433. continue;
  434. $tode_field_term = $tode_field[$node->language][0]; // on node creation field language is always to und (sure ?)
  435. // // test the language, if not default language create the term name translation
  436. if( module_exists('i18n_taxonomy') && ( $node->language != 'und' || $node->language != $default_language ) ){
  437. $context= array('term',$tode_field_term['tid'],'name');
  438. i18n_string_textgroup('taxonomy')->update_translation($context, $node->language, $tode_field_term['name']);
  439. }
  440. }
  441. }
  442. /*
  443. TODO merge two terms when translation is made by selecting a node whiche already exists
  444. */
  445. /*
  446. TODO create a node when a term is created else where than the node which got the tode
  447. */
  448. /**
  449. * Implements hook_menu().
  450. */
  451. function tode_menu() {
  452. // dsm('tode_menu');
  453. $items = array();
  454. $items['tode/%ctools_js/add'] = array(
  455. 'title' => 'Tode modal add entity',
  456. 'page callback' => 'tode_entity_add',
  457. 'page arguments' => array(1,3,4,5),
  458. 'access callback' => TRUE,
  459. 'type' => MENU_CALLBACK,
  460. );
  461. return $items;
  462. }
  463. function tode_entity_add($js = FALSE, $bundle, $entity, $title = 'Title'){
  464. // Fall back if $js is not set.
  465. if (!$js) {
  466. return drupal_get_form('tode_entity_add_form', $bundle, $entity);
  467. }
  468. ctools_include('modal');
  469. ctools_include('ajax');
  470. $form_state = array(
  471. 'title' => t('Create '.$entity),
  472. 'ajax' => TRUE,
  473. 'build_info' => array('args' => array('0' => $bundle, '1' => $entity, '2' => $title)),
  474. );
  475. $output = ctools_modal_form_wrapper('tode_entity_add_form', $form_state);
  476. if (!empty($form_state['executed'])) {
  477. $commands = array();
  478. $commands[] = ctools_modal_command_dismiss();
  479. print ajax_render($commands);
  480. exit;
  481. }
  482. else {
  483. print ajax_render($output);
  484. exit;
  485. }
  486. }
  487. function tode_entity_add_form($form, $form_state, $bundle, $entity, $title) {
  488. $form = array();
  489. $form['title'] = array(
  490. '#type' => 'textfield',
  491. '#title' => t($title),
  492. '#size' => 40,
  493. '#maxlength' => 255,
  494. );
  495. $form['bundle'] = array(
  496. '#type' => 'hidden',
  497. '#value' => $bundle,
  498. );
  499. $form['entity'] = array(
  500. '#type' => 'hidden',
  501. '#value' => $entity,
  502. );
  503. $form['create'] = array(
  504. '#type' => 'submit',
  505. '#value' => t('Create'),
  506. );
  507. return $form;
  508. }
  509. function tode_entity_add_form_validate($form, &$form_state){
  510. if(empty($form_state['values']['title'])){
  511. form_set_error('title', 'Title field can\'t be empty!');
  512. }
  513. }
  514. function tode_entity_add_form_submit($form, &$form_state){
  515. global $user;
  516. // dsm($form_state, '$form_state');
  517. $values = $form_state['values'];
  518. $bundle_fields = field_info_instances($values['bundle']);
  519. // dsm($bundle_fields, '$bundle_fields');
  520. $fields = $bundle_fields[$values['entity']];
  521. // dsm($fields, '$fields');
  522. foreach ($fields as $field_name => $field) {
  523. if($field['widget']['type'] == 'tode'){
  524. $tode_field = $field;
  525. break;
  526. }
  527. }
  528. # get vocabulary
  529. $tode_field_infos = field_info_field($field['field_name']);
  530. // dsm($tode_field_infos, '$tode_field_infos');
  531. $voc_name = $tode_field_infos['settings']['allowed_values'][0]['vocabulary'];
  532. $vocabulary = taxonomy_vocabulary_machine_name_load($voc_name);
  533. // dsm($vocabulary, '$vocabulary');
  534. # create the term
  535. $term = new stdClass();
  536. $term->name = $values['title'];
  537. $term->vid = $vocabulary->vid; // ‘1’ is a vocabulary id you wish this term to assign to
  538. // $term->field_custom_field_name[LANGUAGE_NONE][0]['value'] = ‘Some value’; // OPTIONAL. If your term has a custom field attached it can added as simple as this
  539. taxonomy_term_save($term); // Finally, save our term
  540. // dsm($term, '$term');
  541. # create the node
  542. //http://www.group42.ca/creating_and_updating_nodes_programmatically_in_drupal_7
  543. //http://timonweb.com/how-programmatically-create-nodes-comments-and-taxonomies-drupal-7
  544. $node = new stdClass();
  545. $node->type = $values['entity'];
  546. node_object_prepare($node);
  547. $tode_field_name = $tode_field['field_name'];
  548. $node = (array)$node +array(
  549. "title" => $values['title'],
  550. "language" => LANGUAGE_NONE,
  551. "uid" => $user->uid,
  552. $tode_field_name => array( LANGUAGE_NONE => array(0 => array('tid' => $term->tid))),
  553. );
  554. // $node->$tode_field_name[$node->language]['tid'] = $term->tid;
  555. // $node->$tode_field_name = array( $node->language => array('tid' => $term->tid));
  556. // $tode_field_name = $tode_field['field_name'];
  557. // $node = (object) array(
  558. // "type" => $values['entity'],
  559. // // node_object_prepare($node);
  560. // "title" => $values['title'],
  561. // "language" => LANGUAGE_NONE,
  562. // "uid" => $user->uid,
  563. // $tode_field_name => array( LANGUAGE_NONE=>array('tid' => $term->tid)),
  564. // );
  565. $node = (object)$node;
  566. // dsm($node, '$node');
  567. node_save($node);
  568. // dsm($node, '$node');
  569. # tag the node with the term
  570. # set the tode field to the term tid
  571. }
  572. function BAD_ONE_tode_entity_add_form($js = FALSE, $bundle, $entity) {
  573. // dsm('- - - - tode_entity_add_form');
  574. // dsm($bundle, '$bundle');
  575. // dsm($entity, '$entity');
  576. // error_log($js);
  577. // error_log($bundle);
  578. // error_log($entity);
  579. //
  580. global $user;
  581. //module_load_include('inc', 'node', 'node.pages');
  582. ctools_include('node.pages', 'node', '');
  583. $node = (object) array(
  584. 'uid' => $user->uid,
  585. 'name' => (isset($user->name) ? $user->name : ''),
  586. 'type' => $entity,
  587. 'language' => LANGUAGE_NONE
  588. );
  589. $form_id = $entity.'_node_form';
  590. if (!$js) {
  591. return drupal_get_form($form_id, $node);
  592. }
  593. ctools_include('modal');
  594. ctools_include('ajax');
  595. $form_state = array(
  596. 'title' => t('Add '.$entity),
  597. 'ajax' => TRUE,
  598. );
  599. $form_state['build_info']['args'] = array($node);
  600. $output = ctools_modal_form_wrapper($entity.'_node_form', $form_state);
  601. if (!empty($form_state['executed'])) {
  602. $output = array();
  603. $output[] = ctools_modal_command_display( t('Node created'), '<div class="modal-message">'.$entity.' creation successful.</div>'); /** Add success message*/
  604. };
  605. print ajax_render($output);
  606. exit;
  607. }
  608. /**
  609. * Implements hook_field_widget_form_alter().
  610. *
  611. * add create entity bundle front of term reference field with tode voc
  612. */
  613. function DESACTIVATED_tode_field_widget_form_alter(&$element, &$form_state, $context) {
  614. $field = $context['field'];
  615. $instance = $context['instance'];
  616. if($field['type'] == 'taxonomy_term_reference' && ($instance['widget']['type'] == 'taxonomy_autocomplete' || $instance['widget']['type'] == 'autocomplete_deluxe_taxonomy')){
  617. // dsm('- - - - - tode_field_widget_form_alter');
  618. // dsm($element, '$element');
  619. // dsm($form_state, '$form_state');
  620. // dsm($context, '$context');
  621. // dsm($instance['widget']['type'], '$instance[widget][type]');
  622. foreach ($field['settings']['allowed_values'] as $key => $value) {
  623. if($tode = _tode_get_voc_tode_field_def($value['vocabulary'])){
  624. ctools_include('ajax');
  625. ctools_include('modal');
  626. ctools_modal_add_js();
  627. // ctools_add_css('tode', 'tode');
  628. // drupal_add_css(drupal_get_path('module', 'tode') . "tode.css");
  629. // dsm($tode, '$tode');
  630. $type_fields = field_info_instances('node');
  631. if(!isset($element['#attributes']["class"]))
  632. $element['#attributes']["class"] = array();
  633. $element['#attributes']["class"][] = "tode-add-modal";
  634. $element['#suffix'] = '';
  635. foreach ($tode['bundles'] as $bundle => $entities) {
  636. foreach ($entities as $entity) {
  637. $tode_instance = $type_fields[$entity][$tode['field_name']];
  638. $btn = ctools_modal_text_button(t('create a new %s', array('%s'=>$entity)), 'tode/nojs/add/'.$bundle.'/'.$entity.'/'.$tode_instance['label'], t('alt'), "button ctools-modal-tode-add-modal") . "\n"; // modal-popup-small
  639. // $btn .= ctools_modal_text_button(t('create new test'), 'tode/nojs/add/node/test', t('alt'));
  640. // dsm($btn);
  641. if($element['#suffix'] == '')
  642. $element['#suffix'] = '<div class="tode-add-modal-links">';
  643. $element['#suffix'] .= $btn;
  644. }
  645. }
  646. }
  647. }
  648. if( isset($element['#suffix']) && $element['#suffix'] != '' ){
  649. $throbber = theme('image', array('path' => ctools_image_path('loading_animation.gif', 'modal_forms'), 'alt' => t('Loading...'), 'title' => t('Loading')));
  650. $js_settings = array(
  651. 'tode-add-modal' => array(
  652. 'modalSize' => array(
  653. 'type' => 'fixed',
  654. 'width' => 500,
  655. 'height' => 200,
  656. ),
  657. 'modalOptions' => array(
  658. 'opacity' => 0.4,
  659. 'background' => '#000',
  660. ),
  661. 'animation' => 'fadeIn',
  662. // 'modalTheme' => 'ModalFormsPopup',
  663. 'throbber' => $throbber,
  664. 'closeText' => t('Close'),
  665. ),
  666. );
  667. drupal_add_js($js_settings, 'setting');
  668. $element['#prefix'] = '<div class="tode-add-modal-wrapper">';
  669. $element['#suffix'] .= '</div></div>';
  670. }
  671. // dsm($element, '$element');
  672. }
  673. }
  674. /**
  675. * Implements hook_taxonomy_term_insert().
  676. */
  677. // function tode_taxonomy_term_insert($term) {
  678. // dsm($term, '$term');
  679. // }
  680. /**
  681. * Implementation of hook_form_alter().
  682. *
  683. * node deletion to delete also the tode term
  684. *
  685. */
  686. function tode_form_alter(&$form, $form_state, $form_id){
  687. // dsm($form_id, 'tode form_alter form_id');
  688. /*
  689. TODO block the deletion if tode term has children !! because this will delete them to …
  690. */
  691. if($form_id == 'test_node_form'){
  692. // dsm($form_state);
  693. }
  694. if (stripos($form_id, 'node_delete_confirm') !== false){
  695. // dsm($form_id, 'tode form_alter form_id');
  696. _tode_node_delete_form_alter($form, $form_state);
  697. // dsm($form);
  698. }else if(stripos($form_id, 'node_admin_content') !== false){
  699. if(isset($form['operation']) && $form['operation']['#value'] == 'delete'){
  700. // dsm($form, 'node_admin_content form');
  701. // dsm($form_state, 'form_state');
  702. _tode_nodes_delete_form_alter($form, $form_state);
  703. }
  704. }
  705. }
  706. function _tode_node_delete_form_alter(&$form, $form_state){
  707. // dsm($form, '_tode_node_delete_form_alter : form');
  708. // get the node
  709. $node = $form['#node'];
  710. // dsm($node, '$node');
  711. #get the fields defenition of node type
  712. $tode_fields = _tode_get_node_tode_fields_def($node);
  713. // dsm($tode_fields);
  714. if(count($tode_fields) == 0)
  715. return;
  716. #get the terms value
  717. $terms = array('names'=>array(), 'tids'=>array());
  718. foreach ($tode_fields as $field_name => $field)
  719. _tode_populate_terms_node_delete($terms, $node->$field_name);
  720. _tode_node_delete_prepare_form($form, $terms);
  721. }
  722. function _tode_nodes_delete_form_alter(&$form, $form_state){
  723. // dsm($form, '_tode_nodes_delete_form_alter : form');
  724. $nodes = array();
  725. foreach ($form_state['values']['nodes'] as $nid => $actif)
  726. if($actif)
  727. $nodes[] = node_load($nid);
  728. #get the terms value
  729. $terms = array('names'=>array(), 'tids'=>array());
  730. foreach ($nodes as $node) {
  731. #get the fields definition of node type
  732. $tode_fields = _tode_get_node_tode_fields_def($node);
  733. //dsm($tode_fields);
  734. if(count($tode_fields) == 0)
  735. continue;
  736. foreach ($tode_fields as $field_name => $field)
  737. _tode_populate_terms_node_delete($terms, $node->$field_name);
  738. }
  739. _tode_node_delete_prepare_form($form, $terms);
  740. }
  741. function _tode_populate_terms_node_delete(&$terms, $tode_field){
  742. foreach ($tode_field as $language) {
  743. foreach ($language as $term) {
  744. $term = taxonomy_term_load($term['tid']);
  745. if(isset($term->tid) && !in_array($term->tid, $terms['tids'])){
  746. $terms['names'][] = $term->name;
  747. $terms['tids'][] = $term->tid;
  748. }
  749. }
  750. }
  751. }
  752. function _tode_node_delete_prepare_form(&$form, $terms){
  753. if(count($terms)){
  754. /*
  755. TODO add here a checkbox to select terms to delete
  756. */
  757. #add some warning in form description
  758. $form['description']['#markup'] .= '<br />'.t('this will also delete taxonomy terms : %terms', array('%terms'=>implode(', ', $terms['names'])));
  759. $form['tode_delete'] = array( '#type' => 'hidden', '#value' => serialize($terms['tids']),);
  760. $form['tode_terms'] = array('#type' => 'hidden', '#value' => serialize($terms['names']),);
  761. $form['#submit'][] = 'tode_delete_submit';
  762. }
  763. }
  764. function tode_delete_submit($form, &$form_state){
  765. $tids = unserialize($form['tode_delete']['#value']);
  766. foreach ($tids as $tid)
  767. taxonomy_term_delete($tid);
  768. $terms = unserialize($form['tode_terms']['#value']);
  769. drupal_set_message(t('Following Taxonomy terms have been deleted : %terms', array('%terms' => implode(', ', $terms) )), 'status');
  770. }
  771. /**
  772. * Implements hook_url_outbound_alter().
  773. */
  774. function tode_url_outbound_alter(&$path, &$options, $original_path) {
  775. // dsm('tode_url_outbound_alter');
  776. # terms url
  777. $term = false;
  778. $node = false;
  779. // if(isset($options['entity_type']) && $options['entity_type'] == 'taxonomy_term'){
  780. // // dsm('- - - - tode_url_outbound_alter');
  781. // // dsm($path, '$path');
  782. // // dsm($options, '$options');
  783. // // dsm($original_path, '$original_path');
  784. //
  785. // $term = $options['entity'];
  786. //
  787. // }else{
  788. // $args = explode('/', $original_path);
  789. // // dsm($args, 'args');
  790. // if($args[0] == 'taxonomy' && $args[1] == 'term' && is_numeric($args[2]) ){
  791. // $term = taxonomy_term_load($args[2]);
  792. // }
  793. //
  794. // }
  795. if (preg_match('/^node\/([0-9]*)$/', $path, $matches)) {
  796. $node = node_load($matches[1]);
  797. }
  798. # WARNING works only because nodeandtermrelink_url_outbound_alter() is trigered before this (KADIST)
  799. if (preg_match('/^taxonomy\/term\/([0-9]*)$/', $path, $matches)) {
  800. $term = taxonomy_term_load($matches[1]);
  801. }
  802. if($node){
  803. // dsm($node, 'node');
  804. if($fields = _tode_get_node_tode_fields_def($node)){
  805. foreach ($fields as $field_name => $field) {
  806. if (isset($field['widget']['settings']['redirect_node_to_term']) && $field['widget']['settings']['redirect_node_to_term']) {
  807. dsm($field, '$field');
  808. $items = field_get_items('node', $node, $field_name);
  809. dsm($items, 'items');
  810. $new_path = 'taxonomy/term/'.$items[0]['tid'];
  811. if( $new_alias = drupal_get_path_alias($new_path) ){//, $options['language']->language
  812. $path = $new_alias;
  813. $original_path = $new_path;
  814. $options['alias'] = TRUE;
  815. }else{
  816. $path = $new_path;
  817. }
  818. break;
  819. }
  820. }
  821. }
  822. }
  823. if($term){
  824. // dsm($term, '$term : '.$term->name);
  825. if($field = _tode_get_voc_tode_field_def($term->vocabulary_machine_name)){
  826. // dsm($field, '$field');
  827. // $field_settings = field_info_instance_settings($field->type);//field_info_widget_settings($field->field_name); //
  828. // dsm($field_settings, '$field_settings');
  829. # TODO add if widget setting; how to get the settings
  830. if (isset($field['widget']['settings']['redirect_term_to_node']) && $field['widget']['settings']['redirect_term_to_node']) {
  831. // dsm($field, '$field');
  832. // dsm($options, '$options');
  833. $sr = $field['field_info_field']['storage']['details']['sql']['FIELD_LOAD_CURRENT'];
  834. foreach ($sr as $table => $column) {
  835. $query = db_select($table, 'ft');
  836. $query->join('node', 'n', 'ft.entity_id = n.nid AND n.language = :language OR n.language = :language', array(':language' => $options['language']->language, ':language' => 'und'));
  837. $query
  838. ->fields('ft')
  839. ->condition('ft.'.$column['tid'], $term->tid);
  840. $result = $query->execute();
  841. break;
  842. }
  843. foreach ($result as $node) {
  844. // dsm($node, '$node');
  845. $new_path = 'node/'.$node->entity_id;
  846. if( $new_alias = drupal_get_path_alias($new_path, $options['language']->language) ){
  847. $path = $new_alias;
  848. $original_path = $new_path;
  849. $options['alias'] = TRUE;
  850. }else{
  851. $path = $new_path;
  852. }
  853. break;
  854. }
  855. }
  856. }
  857. }
  858. }
  859. /**
  860. * HELPERS
  861. */
  862. function _tode_clean_form($form, $level = 0){
  863. foreach ($form as $key => $value) {
  864. if(strpos($key,'#') !== false || $key == 'form_build_id' || $key == 'form_id' || $key == 'form_token'){
  865. if( $level == 0 || $key == "#element_validate")
  866. unset($form[$key]);
  867. }elseif(is_array($value)){
  868. $form[$key] = _tode_clean_form($value, $level+1);
  869. }
  870. }
  871. return $form;
  872. }
  873. function _tode_prefix_form($form, $prefix = '', $add = TRUE){
  874. foreach ($form as $key => $value) {
  875. if(strpos($key,'#') === false){
  876. if((isset($value['#type']) && $value['#type'] == 'fieldset') || (!$add && is_array($value)))
  877. $value = _tode_prefix_form($value, $prefix, $add);
  878. if($add){
  879. $form[$prefix.$key] = $value;
  880. unset($form[$key]);
  881. }elseif(strpos($key, $prefix) !== false ){
  882. $form[str_replace($prefix, '', $key)] = $value;
  883. unset($form[$key]);
  884. }
  885. }
  886. }
  887. return $form;
  888. }
  889. /**
  890. * _tode_term_form($tid)
  891. *
  892. */
  893. function _tode_term_form($term){
  894. // dsm('_tode_term_form');
  895. if ($term) {
  896. $form_state = array(
  897. 'build_info'=>array(
  898. 'args'=>array(0=>$term)
  899. ),
  900. 'method'=>'post',
  901. );
  902. // function taxonomy_form_term($form, &$form_state, $edit = array(), $vocabulary = NULL) {
  903. $term_form = drupal_retrieve_form('taxonomy_form_term', $form_state);
  904. drupal_prepare_form('taxonomy_form_term', $term_form, $form_state);
  905. return $term_form;
  906. }else{
  907. return false;
  908. }
  909. }
  910. /**
  911. * _tode_trim_options(&$form, $element)
  912. *
  913. */
  914. function _tode_trim_options(&$form, $item){
  915. foreach ($form[$item] as $field_name => $field) {
  916. if(((is_array($field)) && $field['#type'] == 'select') && $field['#multiple']){
  917. $options = $field['#options'];
  918. for ($i=0; $i < count($options); $i++) {
  919. if(!isset($options[$i]->option))
  920. continue;
  921. $op = array();
  922. foreach ($options[$i]->option as $key => $value)
  923. $op[$key] = strlen($value) > 25 ? substr_replace ($value, ' [...] ', 15, -10) : $value; // affiche 'abc...xyz'
  924. $options[$i]->option = $op;
  925. }
  926. $field['#options'] = $options;
  927. $form[$item][$field_name] = $field;
  928. }
  929. }
  930. }
  931. /**
  932. * _tode_get_node_tode_fields_def
  933. */
  934. function _tode_get_node_tode_fields_def($node){
  935. // dsm($node, '_tode_get_fields_def');
  936. #get the fields defenition of node type
  937. $type_fields = field_info_instances('node');
  938. // dsm($type_fields, 'type_fields definition');
  939. #get the tode node fields
  940. $tode_fields = array();
  941. foreach ($type_fields[$node->type] as $field_name => $field) {
  942. if($field['widget']['type'] == 'tode')
  943. $tode_fields[$field_name] = $field;
  944. }
  945. return $tode_fields;
  946. }
  947. function _tode_get_voc_tode_field_def($voc_name){
  948. $type_fields = field_info_instances('node');
  949. // dsm($type_fields, '$type_fields');
  950. foreach ($type_fields as $nodetype => $fields)
  951. foreach ($fields as $field_name => $field)
  952. if($field['widget']['type'] == 'tode'){
  953. // dsm($field, '$field');
  954. $fieldinfos = field_info_field($field_name);
  955. // dsm($fieldinfos, '$fieldinfos');
  956. $field['field_info_field'] = $fieldinfos;
  957. if($voc_name == $fieldinfos['settings']['allowed_values'][0]['vocabulary'])
  958. return $field;
  959. }
  960. return false;
  961. }
  962. function tode_get_nids_from_term($term, $language = false){
  963. if($todefield = _tode_get_voc_tode_field_def($term->vocabulary_machine_name)){
  964. // $fieldinfos = field_info_field($todefield->field_name);
  965. $query = new EntityFieldQuery();
  966. $query->entityCondition('entity_type', 'node')
  967. ->fieldCondition($todefield['field_name'], 'tid', $term->tid);
  968. if($language)
  969. $query->propertyCondition('language', array('und', $language), 'IN');
  970. $result = $query->execute();
  971. if(count($result))
  972. return $result;
  973. }
  974. return false;
  975. }