popsu_taxonomies.features.field.inc 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263
  1. <?php
  2. /**
  3. * @file
  4. * popsu_taxonomies.features.field.inc
  5. */
  6. /**
  7. * Implements hook_field_default_fields().
  8. */
  9. function popsu_taxonomies_field_default_fields() {
  10. $fields = array();
  11. // Exported field: 'node-popsu_colloque-field_popsu_colloque_popsu'.
  12. $fields['node-popsu_colloque-field_popsu_colloque_popsu'] = array(
  13. 'field_config' => array(
  14. 'active' => '1',
  15. 'cardinality' => '1',
  16. 'deleted' => '0',
  17. 'entity_types' => array(),
  18. 'field_name' => 'field_popsu_colloque_popsu',
  19. 'foreign keys' => array(
  20. 'tid' => array(
  21. 'columns' => array(
  22. 'tid' => 'tid',
  23. ),
  24. 'table' => 'taxonomy_term_data',
  25. ),
  26. ),
  27. 'indexes' => array(
  28. 'tid' => array(
  29. 0 => 'tid',
  30. ),
  31. ),
  32. 'locked' => '0',
  33. 'module' => 'taxonomy',
  34. 'settings' => array(
  35. 'allowed_values' => array(
  36. 0 => array(
  37. 'vocabulary' => 'popsu_popsu',
  38. 'parent' => '0',
  39. ),
  40. ),
  41. 'options_list_callback' => 'i18n_taxonomy_allowed_values',
  42. ),
  43. 'translatable' => '0',
  44. 'type' => 'taxonomy_term_reference',
  45. ),
  46. 'field_instance' => array(
  47. 'bundle' => 'popsu_colloque',
  48. 'default_value' => array(
  49. 0 => array(
  50. 'tid' => '1',
  51. ),
  52. ),
  53. 'deleted' => '0',
  54. 'description' => '',
  55. 'display' => array(
  56. 'default' => array(
  57. 'label' => 'above',
  58. 'settings' => array(),
  59. 'type' => 'hidden',
  60. 'weight' => '3',
  61. ),
  62. 'teaser' => array(
  63. 'label' => 'above',
  64. 'settings' => array(),
  65. 'type' => 'hidden',
  66. 'weight' => 0,
  67. ),
  68. ),
  69. 'entity_type' => 'node',
  70. 'field_name' => 'field_popsu_colloque_popsu',
  71. 'label' => 'POPSU',
  72. 'required' => 1,
  73. 'settings' => array(
  74. 'user_register_form' => FALSE,
  75. ),
  76. 'widget' => array(
  77. 'active' => 1,
  78. 'module' => 'options',
  79. 'settings' => array(),
  80. 'type' => 'options_select',
  81. 'weight' => '0',
  82. ),
  83. ),
  84. );
  85. // Exported field: 'node-popsu_colloque-field_popsu_colloque_ville'.
  86. $fields['node-popsu_colloque-field_popsu_colloque_ville'] = array(
  87. 'field_config' => array(
  88. 'active' => '1',
  89. 'cardinality' => '1',
  90. 'deleted' => '0',
  91. 'entity_types' => array(),
  92. 'field_name' => 'field_popsu_colloque_ville',
  93. 'foreign keys' => array(
  94. 'tid' => array(
  95. 'columns' => array(
  96. 'tid' => 'tid',
  97. ),
  98. 'table' => 'taxonomy_term_data',
  99. ),
  100. ),
  101. 'indexes' => array(
  102. 'tid' => array(
  103. 0 => 'tid',
  104. ),
  105. ),
  106. 'locked' => '0',
  107. 'module' => 'taxonomy',
  108. 'settings' => array(
  109. 'allowed_values' => array(
  110. 0 => array(
  111. 'vocabulary' => 'popsu_villes',
  112. 'parent' => '0',
  113. ),
  114. ),
  115. 'options_list_callback' => 'i18n_taxonomy_allowed_values',
  116. ),
  117. 'translatable' => '0',
  118. 'type' => 'taxonomy_term_reference',
  119. ),
  120. 'field_instance' => array(
  121. 'bundle' => 'popsu_colloque',
  122. 'default_value' => NULL,
  123. 'deleted' => '0',
  124. 'description' => '',
  125. 'display' => array(
  126. 'default' => array(
  127. 'label' => 'above',
  128. 'settings' => array(),
  129. 'type' => 'hidden',
  130. 'weight' => '4',
  131. ),
  132. 'teaser' => array(
  133. 'label' => 'above',
  134. 'settings' => array(),
  135. 'type' => 'hidden',
  136. 'weight' => 0,
  137. ),
  138. ),
  139. 'entity_type' => 'node',
  140. 'field_name' => 'field_popsu_colloque_ville',
  141. 'label' => 'Ville',
  142. 'required' => 1,
  143. 'settings' => array(
  144. 'user_register_form' => FALSE,
  145. ),
  146. 'widget' => array(
  147. 'active' => 1,
  148. 'module' => 'options',
  149. 'settings' => array(),
  150. 'type' => 'options_select',
  151. 'weight' => '1',
  152. ),
  153. ),
  154. );
  155. // Exported field: 'node-popsu_page-field_popsu_page_popsu'.
  156. $fields['node-popsu_page-field_popsu_page_popsu'] = array(
  157. 'field_config' => array(
  158. 'active' => '1',
  159. 'cardinality' => '1',
  160. 'deleted' => '0',
  161. 'entity_types' => array(),
  162. 'field_name' => 'field_popsu_page_popsu',
  163. 'foreign keys' => array(
  164. 'tid' => array(
  165. 'columns' => array(
  166. 'tid' => 'tid',
  167. ),
  168. 'table' => 'taxonomy_term_data',
  169. ),
  170. ),
  171. 'indexes' => array(
  172. 'tid' => array(
  173. 0 => 'tid',
  174. ),
  175. ),
  176. 'locked' => '0',
  177. 'module' => 'taxonomy',
  178. 'settings' => array(
  179. 'allowed_values' => array(
  180. 0 => array(
  181. 'vocabulary' => 'popsu_popsu',
  182. 'parent' => '0',
  183. ),
  184. ),
  185. 'options_list_callback' => 'i18n_taxonomy_allowed_values',
  186. ),
  187. 'translatable' => '0',
  188. 'type' => 'taxonomy_term_reference',
  189. ),
  190. 'field_instance' => array(
  191. 'bundle' => 'popsu_page',
  192. 'default_value' => array(
  193. 0 => array(
  194. 'tid' => '1',
  195. ),
  196. ),
  197. 'deleted' => '0',
  198. 'description' => '',
  199. 'display' => array(
  200. 'default' => array(
  201. 'label' => 'above',
  202. 'settings' => array(),
  203. 'type' => 'hidden',
  204. 'weight' => '1',
  205. ),
  206. 'teaser' => array(
  207. 'label' => 'above',
  208. 'settings' => array(),
  209. 'type' => 'hidden',
  210. 'weight' => 0,
  211. ),
  212. ),
  213. 'entity_type' => 'node',
  214. 'field_name' => 'field_popsu_page_popsu',
  215. 'label' => 'POPSU',
  216. 'required' => 1,
  217. 'settings' => array(
  218. 'user_register_form' => FALSE,
  219. ),
  220. 'widget' => array(
  221. 'active' => 1,
  222. 'module' => 'options',
  223. 'settings' => array(),
  224. 'type' => 'options_select',
  225. 'weight' => '1',
  226. ),
  227. ),
  228. );
  229. // Exported field: 'node-popsu_point_ville-field_popsu_positionville_popsu'.
  230. $fields['node-popsu_point_ville-field_popsu_positionville_popsu'] = array(
  231. 'field_config' => array(
  232. 'active' => '1',
  233. 'cardinality' => '-1',
  234. 'deleted' => '0',
  235. 'entity_types' => array(),
  236. 'field_name' => 'field_popsu_positionville_popsu',
  237. 'foreign keys' => array(
  238. 'tid' => array(
  239. 'columns' => array(
  240. 'tid' => 'tid',
  241. ),
  242. 'table' => 'taxonomy_term_data',
  243. ),
  244. ),
  245. 'indexes' => array(
  246. 'tid' => array(
  247. 0 => 'tid',
  248. ),
  249. ),
  250. 'locked' => '0',
  251. 'module' => 'taxonomy',
  252. 'settings' => array(
  253. 'allowed_values' => array(
  254. 0 => array(
  255. 'vocabulary' => 'popsu_popsu',
  256. 'parent' => '0',
  257. ),
  258. ),
  259. 'options_list_callback' => 'i18n_taxonomy_allowed_values',
  260. ),
  261. 'translatable' => '0',
  262. 'type' => 'taxonomy_term_reference',
  263. ),
  264. 'field_instance' => array(
  265. 'bundle' => 'popsu_point_ville',
  266. 'default_value' => NULL,
  267. 'deleted' => '0',
  268. 'description' => '',
  269. 'display' => array(
  270. 'default' => array(
  271. 'label' => 'above',
  272. 'module' => 'i18n_taxonomy',
  273. 'settings' => array(),
  274. 'type' => 'i18n_taxonomy_term_reference_link',
  275. 'weight' => 1,
  276. ),
  277. 'teaser' => array(
  278. 'label' => 'above',
  279. 'settings' => array(),
  280. 'type' => 'hidden',
  281. 'weight' => 0,
  282. ),
  283. ),
  284. 'entity_type' => 'node',
  285. 'field_name' => 'field_popsu_positionville_popsu',
  286. 'label' => 'POPSU',
  287. 'required' => 1,
  288. 'settings' => array(
  289. 'user_register_form' => FALSE,
  290. ),
  291. 'widget' => array(
  292. 'active' => 1,
  293. 'module' => 'options',
  294. 'settings' => array(),
  295. 'type' => 'options_buttons',
  296. 'weight' => '3',
  297. ),
  298. ),
  299. );
  300. // Exported field: 'node-popsu_point_ville-field_popsu_positionville_ville'.
  301. $fields['node-popsu_point_ville-field_popsu_positionville_ville'] = array(
  302. 'field_config' => array(
  303. 'active' => '1',
  304. 'cardinality' => '1',
  305. 'deleted' => '0',
  306. 'entity_types' => array(),
  307. 'field_name' => 'field_popsu_positionville_ville',
  308. 'foreign keys' => array(
  309. 'tid' => array(
  310. 'columns' => array(
  311. 'tid' => 'tid',
  312. ),
  313. 'table' => 'taxonomy_term_data',
  314. ),
  315. ),
  316. 'indexes' => array(
  317. 'tid' => array(
  318. 0 => 'tid',
  319. ),
  320. ),
  321. 'locked' => '0',
  322. 'module' => 'taxonomy',
  323. 'settings' => array(
  324. 'allowed_values' => array(
  325. 0 => array(
  326. 'vocabulary' => 'popsu_villes',
  327. 'parent' => '0',
  328. ),
  329. ),
  330. 'options_list_callback' => 'i18n_taxonomy_allowed_values',
  331. ),
  332. 'translatable' => '0',
  333. 'type' => 'taxonomy_term_reference',
  334. ),
  335. 'field_instance' => array(
  336. 'bundle' => 'popsu_point_ville',
  337. 'default_value' => NULL,
  338. 'deleted' => '0',
  339. 'description' => '',
  340. 'display' => array(
  341. 'default' => array(
  342. 'label' => 'above',
  343. 'module' => 'i18n_taxonomy',
  344. 'settings' => array(),
  345. 'type' => 'i18n_taxonomy_term_reference_link',
  346. 'weight' => 0,
  347. ),
  348. 'teaser' => array(
  349. 'label' => 'above',
  350. 'settings' => array(),
  351. 'type' => 'hidden',
  352. 'weight' => 0,
  353. ),
  354. ),
  355. 'entity_type' => 'node',
  356. 'field_name' => 'field_popsu_positionville_ville',
  357. 'label' => 'Ville',
  358. 'required' => 1,
  359. 'settings' => array(
  360. 'user_register_form' => FALSE,
  361. ),
  362. 'widget' => array(
  363. 'active' => 1,
  364. 'module' => 'options',
  365. 'settings' => array(),
  366. 'type' => 'options_select',
  367. 'weight' => '2',
  368. ),
  369. ),
  370. );
  371. // Exported field: 'node-popsu_projet-field_popsu_projet_popsu'.
  372. $fields['node-popsu_projet-field_popsu_projet_popsu'] = array(
  373. 'field_config' => array(
  374. 'active' => '1',
  375. 'cardinality' => '1',
  376. 'deleted' => '0',
  377. 'entity_types' => array(),
  378. 'field_name' => 'field_popsu_projet_popsu',
  379. 'foreign keys' => array(
  380. 'tid' => array(
  381. 'columns' => array(
  382. 'tid' => 'tid',
  383. ),
  384. 'table' => 'taxonomy_term_data',
  385. ),
  386. ),
  387. 'indexes' => array(
  388. 'tid' => array(
  389. 0 => 'tid',
  390. ),
  391. ),
  392. 'locked' => '0',
  393. 'module' => 'taxonomy',
  394. 'settings' => array(
  395. 'allowed_values' => array(
  396. 0 => array(
  397. 'vocabulary' => 'popsu_popsu',
  398. 'parent' => '0',
  399. ),
  400. ),
  401. 'options_list_callback' => 'i18n_taxonomy_allowed_values',
  402. ),
  403. 'translatable' => '0',
  404. 'type' => 'taxonomy_term_reference',
  405. ),
  406. 'field_instance' => array(
  407. 'bundle' => 'popsu_projet',
  408. 'default_value' => array(
  409. 0 => array(
  410. 'tid' => '1',
  411. ),
  412. ),
  413. 'deleted' => '0',
  414. 'description' => '',
  415. 'display' => array(
  416. 'default' => array(
  417. 'label' => 'above',
  418. 'settings' => array(),
  419. 'type' => 'hidden',
  420. 'weight' => '7',
  421. ),
  422. 'teaser' => array(
  423. 'label' => 'above',
  424. 'settings' => array(),
  425. 'type' => 'hidden',
  426. 'weight' => 0,
  427. ),
  428. ),
  429. 'entity_type' => 'node',
  430. 'field_name' => 'field_popsu_projet_popsu',
  431. 'label' => 'POPSU',
  432. 'required' => 1,
  433. 'settings' => array(
  434. 'user_register_form' => FALSE,
  435. ),
  436. 'widget' => array(
  437. 'active' => 1,
  438. 'module' => 'options',
  439. 'settings' => array(),
  440. 'type' => 'options_select',
  441. 'weight' => '0',
  442. ),
  443. ),
  444. );
  445. // Exported field: 'node-popsu_projet-field_popsu_projet_ville'.
  446. $fields['node-popsu_projet-field_popsu_projet_ville'] = array(
  447. 'field_config' => array(
  448. 'active' => '1',
  449. 'cardinality' => '1',
  450. 'deleted' => '0',
  451. 'entity_types' => array(),
  452. 'field_name' => 'field_popsu_projet_ville',
  453. 'foreign keys' => array(
  454. 'tid' => array(
  455. 'columns' => array(
  456. 'tid' => 'tid',
  457. ),
  458. 'table' => 'taxonomy_term_data',
  459. ),
  460. ),
  461. 'indexes' => array(
  462. 'tid' => array(
  463. 0 => 'tid',
  464. ),
  465. ),
  466. 'locked' => '0',
  467. 'module' => 'taxonomy',
  468. 'settings' => array(
  469. 'allowed_values' => array(
  470. 0 => array(
  471. 'vocabulary' => 'popsu_villes',
  472. 'parent' => '0',
  473. ),
  474. ),
  475. 'options_list_callback' => 'i18n_taxonomy_allowed_values',
  476. ),
  477. 'translatable' => '0',
  478. 'type' => 'taxonomy_term_reference',
  479. ),
  480. 'field_instance' => array(
  481. 'bundle' => 'popsu_projet',
  482. 'default_value' => NULL,
  483. 'deleted' => '0',
  484. 'description' => '',
  485. 'display' => array(
  486. 'default' => array(
  487. 'label' => 'above',
  488. 'settings' => array(),
  489. 'type' => 'hidden',
  490. 'weight' => '8',
  491. ),
  492. 'teaser' => array(
  493. 'label' => 'above',
  494. 'settings' => array(),
  495. 'type' => 'hidden',
  496. 'weight' => 0,
  497. ),
  498. ),
  499. 'entity_type' => 'node',
  500. 'field_name' => 'field_popsu_projet_ville',
  501. 'label' => 'Ville',
  502. 'required' => 1,
  503. 'settings' => array(
  504. 'user_register_form' => FALSE,
  505. ),
  506. 'widget' => array(
  507. 'active' => 1,
  508. 'module' => 'options',
  509. 'settings' => array(),
  510. 'type' => 'options_select',
  511. 'weight' => '1',
  512. ),
  513. ),
  514. );
  515. // Exported field: 'node-popsu_projet_europe-field_popsu_projeteur_ville'.
  516. $fields['node-popsu_projet_europe-field_popsu_projeteur_ville'] = array(
  517. 'field_config' => array(
  518. 'active' => '1',
  519. 'cardinality' => '1',
  520. 'deleted' => '0',
  521. 'entity_types' => array(),
  522. 'field_name' => 'field_popsu_projeteur_ville',
  523. 'foreign keys' => array(
  524. 'tid' => array(
  525. 'columns' => array(
  526. 'tid' => 'tid',
  527. ),
  528. 'table' => 'taxonomy_term_data',
  529. ),
  530. ),
  531. 'indexes' => array(
  532. 'tid' => array(
  533. 0 => 'tid',
  534. ),
  535. ),
  536. 'locked' => '0',
  537. 'module' => 'taxonomy',
  538. 'settings' => array(
  539. 'allowed_values' => array(
  540. 0 => array(
  541. 'vocabulary' => 'popsu_villes',
  542. 'parent' => '0',
  543. ),
  544. ),
  545. 'options_list_callback' => 'i18n_taxonomy_allowed_values',
  546. ),
  547. 'translatable' => '0',
  548. 'type' => 'taxonomy_term_reference',
  549. ),
  550. 'field_instance' => array(
  551. 'bundle' => 'popsu_projet_europe',
  552. 'default_value' => NULL,
  553. 'deleted' => '0',
  554. 'description' => '',
  555. 'display' => array(
  556. 'default' => array(
  557. 'label' => 'above',
  558. 'module' => 'i18n_taxonomy',
  559. 'settings' => array(),
  560. 'type' => 'i18n_taxonomy_term_reference_link',
  561. 'weight' => 1,
  562. ),
  563. 'teaser' => array(
  564. 'label' => 'above',
  565. 'settings' => array(),
  566. 'type' => 'hidden',
  567. 'weight' => 0,
  568. ),
  569. ),
  570. 'entity_type' => 'node',
  571. 'field_name' => 'field_popsu_projeteur_ville',
  572. 'label' => 'Ville',
  573. 'required' => 1,
  574. 'settings' => array(
  575. 'user_register_form' => FALSE,
  576. ),
  577. 'widget' => array(
  578. 'active' => 1,
  579. 'module' => 'options',
  580. 'settings' => array(),
  581. 'type' => 'options_select',
  582. 'weight' => '7',
  583. ),
  584. ),
  585. );
  586. // Exported field: 'node-popsu_publication-field_popsu_publication_popsu'.
  587. $fields['node-popsu_publication-field_popsu_publication_popsu'] = array(
  588. 'field_config' => array(
  589. 'active' => '1',
  590. 'cardinality' => '1',
  591. 'deleted' => '0',
  592. 'entity_types' => array(),
  593. 'field_name' => 'field_popsu_publication_popsu',
  594. 'foreign keys' => array(
  595. 'tid' => array(
  596. 'columns' => array(
  597. 'tid' => 'tid',
  598. ),
  599. 'table' => 'taxonomy_term_data',
  600. ),
  601. ),
  602. 'indexes' => array(
  603. 'tid' => array(
  604. 0 => 'tid',
  605. ),
  606. ),
  607. 'locked' => '0',
  608. 'module' => 'taxonomy',
  609. 'settings' => array(
  610. 'allowed_values' => array(
  611. 0 => array(
  612. 'vocabulary' => 'popsu_popsu',
  613. 'parent' => '0',
  614. ),
  615. ),
  616. 'options_list_callback' => 'i18n_taxonomy_allowed_values',
  617. ),
  618. 'translatable' => '0',
  619. 'type' => 'taxonomy_term_reference',
  620. ),
  621. 'field_instance' => array(
  622. 'bundle' => 'popsu_publication',
  623. 'default_value' => array(
  624. 0 => array(
  625. 'tid' => '1',
  626. ),
  627. ),
  628. 'deleted' => '0',
  629. 'description' => '',
  630. 'display' => array(
  631. 'default' => array(
  632. 'label' => 'above',
  633. 'settings' => array(),
  634. 'type' => 'hidden',
  635. 'weight' => '3',
  636. ),
  637. 'teaser' => array(
  638. 'label' => 'above',
  639. 'settings' => array(),
  640. 'type' => 'hidden',
  641. 'weight' => 0,
  642. ),
  643. ),
  644. 'entity_type' => 'node',
  645. 'field_name' => 'field_popsu_publication_popsu',
  646. 'label' => 'POPSU',
  647. 'required' => 1,
  648. 'settings' => array(
  649. 'user_register_form' => FALSE,
  650. ),
  651. 'widget' => array(
  652. 'active' => 1,
  653. 'module' => 'options',
  654. 'settings' => array(),
  655. 'type' => 'options_select',
  656. 'weight' => '0',
  657. ),
  658. ),
  659. );
  660. // Exported field: 'node-popsu_publication-field_popsu_publication_ville'.
  661. $fields['node-popsu_publication-field_popsu_publication_ville'] = array(
  662. 'field_config' => array(
  663. 'active' => '1',
  664. 'cardinality' => '1',
  665. 'deleted' => '0',
  666. 'entity_types' => array(),
  667. 'field_name' => 'field_popsu_publication_ville',
  668. 'foreign keys' => array(
  669. 'tid' => array(
  670. 'columns' => array(
  671. 'tid' => 'tid',
  672. ),
  673. 'table' => 'taxonomy_term_data',
  674. ),
  675. ),
  676. 'indexes' => array(
  677. 'tid' => array(
  678. 0 => 'tid',
  679. ),
  680. ),
  681. 'locked' => '0',
  682. 'module' => 'taxonomy',
  683. 'settings' => array(
  684. 'allowed_values' => array(
  685. 0 => array(
  686. 'vocabulary' => 'popsu_villes',
  687. 'parent' => '0',
  688. ),
  689. ),
  690. 'options_list_callback' => 'i18n_taxonomy_allowed_values',
  691. ),
  692. 'translatable' => '0',
  693. 'type' => 'taxonomy_term_reference',
  694. ),
  695. 'field_instance' => array(
  696. 'bundle' => 'popsu_publication',
  697. 'default_value' => NULL,
  698. 'deleted' => '0',
  699. 'description' => '',
  700. 'display' => array(
  701. 'default' => array(
  702. 'label' => 'above',
  703. 'settings' => array(),
  704. 'type' => 'hidden',
  705. 'weight' => '4',
  706. ),
  707. 'teaser' => array(
  708. 'label' => 'above',
  709. 'settings' => array(),
  710. 'type' => 'hidden',
  711. 'weight' => 0,
  712. ),
  713. ),
  714. 'entity_type' => 'node',
  715. 'field_name' => 'field_popsu_publication_ville',
  716. 'label' => 'Ville (POPSU France)',
  717. 'required' => 0,
  718. 'settings' => array(
  719. 'user_register_form' => FALSE,
  720. ),
  721. 'widget' => array(
  722. 'active' => 1,
  723. 'module' => 'options',
  724. 'settings' => array(),
  725. 'type' => 'options_select',
  726. 'weight' => '1',
  727. ),
  728. ),
  729. );
  730. // Exported field: 'node-popsu_special-field_popsu_special_popsu'.
  731. $fields['node-popsu_special-field_popsu_special_popsu'] = array(
  732. 'field_config' => array(
  733. 'active' => '1',
  734. 'cardinality' => '1',
  735. 'deleted' => '0',
  736. 'entity_types' => array(),
  737. 'field_name' => 'field_popsu_special_popsu',
  738. 'foreign keys' => array(
  739. 'tid' => array(
  740. 'columns' => array(
  741. 'tid' => 'tid',
  742. ),
  743. 'table' => 'taxonomy_term_data',
  744. ),
  745. ),
  746. 'indexes' => array(
  747. 'tid' => array(
  748. 0 => 'tid',
  749. ),
  750. ),
  751. 'locked' => '0',
  752. 'module' => 'taxonomy',
  753. 'settings' => array(
  754. 'allowed_values' => array(
  755. 0 => array(
  756. 'vocabulary' => 'popsu_popsu',
  757. 'parent' => '0',
  758. ),
  759. ),
  760. 'options_list_callback' => 'i18n_taxonomy_allowed_values',
  761. ),
  762. 'translatable' => '0',
  763. 'type' => 'taxonomy_term_reference',
  764. ),
  765. 'field_instance' => array(
  766. 'bundle' => 'popsu_special',
  767. 'default_value' => array(
  768. 0 => array(
  769. 'tid' => '1',
  770. ),
  771. ),
  772. 'deleted' => '0',
  773. 'description' => '',
  774. 'display' => array(
  775. 'default' => array(
  776. 'label' => 'above',
  777. 'settings' => array(),
  778. 'type' => 'hidden',
  779. 'weight' => '1',
  780. ),
  781. 'teaser' => array(
  782. 'label' => 'above',
  783. 'settings' => array(),
  784. 'type' => 'hidden',
  785. 'weight' => 0,
  786. ),
  787. ),
  788. 'entity_type' => 'node',
  789. 'field_name' => 'field_popsu_special_popsu',
  790. 'label' => 'POPSU',
  791. 'required' => 1,
  792. 'settings' => array(
  793. 'user_register_form' => FALSE,
  794. ),
  795. 'widget' => array(
  796. 'active' => 1,
  797. 'module' => 'options',
  798. 'settings' => array(),
  799. 'type' => 'options_select',
  800. 'weight' => '0',
  801. ),
  802. ),
  803. );
  804. // Exported field: 'node-popsu_theme_local-field_popsu_themloc_popsu'.
  805. $fields['node-popsu_theme_local-field_popsu_themloc_popsu'] = array(
  806. 'field_config' => array(
  807. 'active' => '1',
  808. 'cardinality' => '1',
  809. 'deleted' => '0',
  810. 'entity_types' => array(),
  811. 'field_name' => 'field_popsu_themloc_popsu',
  812. 'foreign keys' => array(
  813. 'tid' => array(
  814. 'columns' => array(
  815. 'tid' => 'tid',
  816. ),
  817. 'table' => 'taxonomy_term_data',
  818. ),
  819. ),
  820. 'indexes' => array(
  821. 'tid' => array(
  822. 0 => 'tid',
  823. ),
  824. ),
  825. 'locked' => '0',
  826. 'module' => 'taxonomy',
  827. 'settings' => array(
  828. 'allowed_values' => array(
  829. 0 => array(
  830. 'vocabulary' => 'popsu_popsu',
  831. 'parent' => '0',
  832. ),
  833. ),
  834. 'options_list_callback' => 'i18n_taxonomy_allowed_values',
  835. ),
  836. 'translatable' => '0',
  837. 'type' => 'taxonomy_term_reference',
  838. ),
  839. 'field_instance' => array(
  840. 'bundle' => 'popsu_theme_local',
  841. 'default_value' => array(
  842. 0 => array(
  843. 'tid' => '1',
  844. ),
  845. ),
  846. 'deleted' => '0',
  847. 'description' => '',
  848. 'display' => array(
  849. 'default' => array(
  850. 'label' => 'above',
  851. 'settings' => array(),
  852. 'type' => 'hidden',
  853. 'weight' => '3',
  854. ),
  855. 'teaser' => array(
  856. 'label' => 'above',
  857. 'settings' => array(),
  858. 'type' => 'hidden',
  859. 'weight' => 0,
  860. ),
  861. ),
  862. 'entity_type' => 'node',
  863. 'field_name' => 'field_popsu_themloc_popsu',
  864. 'label' => 'POPSU',
  865. 'required' => 1,
  866. 'settings' => array(
  867. 'user_register_form' => FALSE,
  868. ),
  869. 'widget' => array(
  870. 'active' => 1,
  871. 'module' => 'options',
  872. 'settings' => array(),
  873. 'type' => 'options_select',
  874. 'weight' => '1',
  875. ),
  876. ),
  877. );
  878. // Exported field: 'node-popsu_theme_local-field_popsu_themloc_ville'.
  879. $fields['node-popsu_theme_local-field_popsu_themloc_ville'] = array(
  880. 'field_config' => array(
  881. 'active' => '1',
  882. 'cardinality' => '1',
  883. 'deleted' => '0',
  884. 'entity_types' => array(),
  885. 'field_name' => 'field_popsu_themloc_ville',
  886. 'foreign keys' => array(
  887. 'tid' => array(
  888. 'columns' => array(
  889. 'tid' => 'tid',
  890. ),
  891. 'table' => 'taxonomy_term_data',
  892. ),
  893. ),
  894. 'indexes' => array(
  895. 'tid' => array(
  896. 0 => 'tid',
  897. ),
  898. ),
  899. 'locked' => '0',
  900. 'module' => 'taxonomy',
  901. 'settings' => array(
  902. 'allowed_values' => array(
  903. 0 => array(
  904. 'vocabulary' => 'popsu_villes',
  905. 'parent' => '0',
  906. ),
  907. ),
  908. 'options_list_callback' => 'i18n_taxonomy_allowed_values',
  909. ),
  910. 'translatable' => '0',
  911. 'type' => 'taxonomy_term_reference',
  912. ),
  913. 'field_instance' => array(
  914. 'bundle' => 'popsu_theme_local',
  915. 'default_value' => NULL,
  916. 'deleted' => '0',
  917. 'description' => '',
  918. 'display' => array(
  919. 'default' => array(
  920. 'label' => 'above',
  921. 'settings' => array(),
  922. 'type' => 'hidden',
  923. 'weight' => '4',
  924. ),
  925. 'teaser' => array(
  926. 'label' => 'above',
  927. 'settings' => array(),
  928. 'type' => 'hidden',
  929. 'weight' => 0,
  930. ),
  931. ),
  932. 'entity_type' => 'node',
  933. 'field_name' => 'field_popsu_themloc_ville',
  934. 'label' => 'Ville',
  935. 'required' => 1,
  936. 'settings' => array(
  937. 'user_register_form' => FALSE,
  938. ),
  939. 'widget' => array(
  940. 'active' => 1,
  941. 'module' => 'options',
  942. 'settings' => array(),
  943. 'type' => 'options_select',
  944. 'weight' => '2',
  945. ),
  946. ),
  947. );
  948. // Exported field: 'node-popsu_theme_trans-field_popsu_themtrans_popsu'.
  949. $fields['node-popsu_theme_trans-field_popsu_themtrans_popsu'] = array(
  950. 'field_config' => array(
  951. 'active' => '1',
  952. 'cardinality' => '1',
  953. 'deleted' => '0',
  954. 'entity_types' => array(),
  955. 'field_name' => 'field_popsu_themtrans_popsu',
  956. 'foreign keys' => array(
  957. 'tid' => array(
  958. 'columns' => array(
  959. 'tid' => 'tid',
  960. ),
  961. 'table' => 'taxonomy_term_data',
  962. ),
  963. ),
  964. 'indexes' => array(
  965. 'tid' => array(
  966. 0 => 'tid',
  967. ),
  968. ),
  969. 'locked' => '0',
  970. 'module' => 'taxonomy',
  971. 'settings' => array(
  972. 'allowed_values' => array(
  973. 0 => array(
  974. 'vocabulary' => 'popsu_popsu',
  975. 'parent' => '0',
  976. ),
  977. ),
  978. 'options_list_callback' => 'i18n_taxonomy_allowed_values',
  979. ),
  980. 'translatable' => '0',
  981. 'type' => 'taxonomy_term_reference',
  982. ),
  983. 'field_instance' => array(
  984. 'bundle' => 'popsu_theme_trans',
  985. 'default_value' => array(
  986. 0 => array(
  987. 'tid' => '1',
  988. ),
  989. ),
  990. 'deleted' => '0',
  991. 'description' => '',
  992. 'display' => array(
  993. 'default' => array(
  994. 'label' => 'above',
  995. 'settings' => array(),
  996. 'type' => 'hidden',
  997. 'weight' => '4',
  998. ),
  999. 'teaser' => array(
  1000. 'label' => 'above',
  1001. 'settings' => array(),
  1002. 'type' => 'hidden',
  1003. 'weight' => 0,
  1004. ),
  1005. ),
  1006. 'entity_type' => 'node',
  1007. 'field_name' => 'field_popsu_themtrans_popsu',
  1008. 'label' => 'POPSU',
  1009. 'required' => 1,
  1010. 'settings' => array(
  1011. 'user_register_form' => FALSE,
  1012. ),
  1013. 'widget' => array(
  1014. 'active' => 1,
  1015. 'module' => 'options',
  1016. 'settings' => array(),
  1017. 'type' => 'options_select',
  1018. 'weight' => '0',
  1019. ),
  1020. ),
  1021. );
  1022. // Exported field: 'node-popsu_theme_trans-field_popsu_themtrans_villes'.
  1023. $fields['node-popsu_theme_trans-field_popsu_themtrans_villes'] = array(
  1024. 'field_config' => array(
  1025. 'active' => '1',
  1026. 'cardinality' => '-1',
  1027. 'deleted' => '0',
  1028. 'entity_types' => array(),
  1029. 'field_name' => 'field_popsu_themtrans_villes',
  1030. 'foreign keys' => array(
  1031. 'tid' => array(
  1032. 'columns' => array(
  1033. 'tid' => 'tid',
  1034. ),
  1035. 'table' => 'taxonomy_term_data',
  1036. ),
  1037. ),
  1038. 'indexes' => array(
  1039. 'tid' => array(
  1040. 0 => 'tid',
  1041. ),
  1042. ),
  1043. 'locked' => '0',
  1044. 'module' => 'taxonomy',
  1045. 'settings' => array(
  1046. 'allowed_values' => array(
  1047. 0 => array(
  1048. 'vocabulary' => 'popsu_villes',
  1049. 'parent' => '0',
  1050. ),
  1051. ),
  1052. 'options_list_callback' => 'i18n_taxonomy_allowed_values',
  1053. ),
  1054. 'translatable' => '0',
  1055. 'type' => 'taxonomy_term_reference',
  1056. ),
  1057. 'field_instance' => array(
  1058. 'bundle' => 'popsu_theme_trans',
  1059. 'default_value' => NULL,
  1060. 'deleted' => '0',
  1061. 'description' => '',
  1062. 'display' => array(
  1063. 'default' => array(
  1064. 'label' => 'above',
  1065. 'settings' => array(),
  1066. 'type' => 'hidden',
  1067. 'weight' => '5',
  1068. ),
  1069. 'teaser' => array(
  1070. 'label' => 'above',
  1071. 'settings' => array(),
  1072. 'type' => 'hidden',
  1073. 'weight' => 0,
  1074. ),
  1075. ),
  1076. 'entity_type' => 'node',
  1077. 'field_name' => 'field_popsu_themtrans_villes',
  1078. 'label' => 'Villes concernées par ce thème',
  1079. 'required' => 0,
  1080. 'settings' => array(
  1081. 'user_register_form' => FALSE,
  1082. ),
  1083. 'widget' => array(
  1084. 'active' => 1,
  1085. 'module' => 'options',
  1086. 'settings' => array(),
  1087. 'type' => 'options_buttons',
  1088. 'weight' => '2',
  1089. ),
  1090. ),
  1091. );
  1092. // Exported field: 'node-popsu_ville-field_popsu_ville_popsu'.
  1093. $fields['node-popsu_ville-field_popsu_ville_popsu'] = array(
  1094. 'field_config' => array(
  1095. 'active' => '1',
  1096. 'cardinality' => '1',
  1097. 'deleted' => '0',
  1098. 'entity_types' => array(),
  1099. 'field_name' => 'field_popsu_ville_popsu',
  1100. 'foreign keys' => array(
  1101. 'tid' => array(
  1102. 'columns' => array(
  1103. 'tid' => 'tid',
  1104. ),
  1105. 'table' => 'taxonomy_term_data',
  1106. ),
  1107. ),
  1108. 'indexes' => array(
  1109. 'tid' => array(
  1110. 0 => 'tid',
  1111. ),
  1112. ),
  1113. 'locked' => '0',
  1114. 'module' => 'taxonomy',
  1115. 'settings' => array(
  1116. 'allowed_values' => array(
  1117. 0 => array(
  1118. 'vocabulary' => 'popsu_popsu',
  1119. 'parent' => '0',
  1120. ),
  1121. ),
  1122. 'options_list_callback' => 'i18n_taxonomy_allowed_values',
  1123. ),
  1124. 'translatable' => '0',
  1125. 'type' => 'taxonomy_term_reference',
  1126. ),
  1127. 'field_instance' => array(
  1128. 'bundle' => 'popsu_ville',
  1129. 'default_value' => array(
  1130. 0 => array(
  1131. 'tid' => '1',
  1132. ),
  1133. ),
  1134. 'deleted' => '0',
  1135. 'description' => '',
  1136. 'display' => array(
  1137. 'default' => array(
  1138. 'label' => 'above',
  1139. 'settings' => array(),
  1140. 'type' => 'hidden',
  1141. 'weight' => '5',
  1142. ),
  1143. 'teaser' => array(
  1144. 'label' => 'above',
  1145. 'settings' => array(),
  1146. 'type' => 'hidden',
  1147. 'weight' => 0,
  1148. ),
  1149. ),
  1150. 'entity_type' => 'node',
  1151. 'field_name' => 'field_popsu_ville_popsu',
  1152. 'label' => 'POPSU',
  1153. 'required' => 1,
  1154. 'settings' => array(
  1155. 'user_register_form' => FALSE,
  1156. ),
  1157. 'widget' => array(
  1158. 'active' => 1,
  1159. 'module' => 'options',
  1160. 'settings' => array(),
  1161. 'type' => 'options_select',
  1162. 'weight' => '1',
  1163. ),
  1164. ),
  1165. );
  1166. // Exported field: 'node-popsu_ville-field_popsu_ville_ville'.
  1167. $fields['node-popsu_ville-field_popsu_ville_ville'] = array(
  1168. 'field_config' => array(
  1169. 'active' => '1',
  1170. 'cardinality' => '1',
  1171. 'deleted' => '0',
  1172. 'entity_types' => array(),
  1173. 'field_name' => 'field_popsu_ville_ville',
  1174. 'foreign keys' => array(
  1175. 'tid' => array(
  1176. 'columns' => array(
  1177. 'tid' => 'tid',
  1178. ),
  1179. 'table' => 'taxonomy_term_data',
  1180. ),
  1181. ),
  1182. 'indexes' => array(
  1183. 'tid' => array(
  1184. 0 => 'tid',
  1185. ),
  1186. ),
  1187. 'locked' => '0',
  1188. 'module' => 'taxonomy',
  1189. 'settings' => array(
  1190. 'allowed_values' => array(
  1191. 0 => array(
  1192. 'vocabulary' => 'popsu_villes',
  1193. 'parent' => '0',
  1194. ),
  1195. ),
  1196. 'options_list_callback' => 'i18n_taxonomy_allowed_values',
  1197. ),
  1198. 'translatable' => '0',
  1199. 'type' => 'taxonomy_term_reference',
  1200. ),
  1201. 'field_instance' => array(
  1202. 'bundle' => 'popsu_ville',
  1203. 'default_value' => NULL,
  1204. 'deleted' => '0',
  1205. 'description' => '',
  1206. 'display' => array(
  1207. 'default' => array(
  1208. 'label' => 'above',
  1209. 'settings' => array(),
  1210. 'type' => 'hidden',
  1211. 'weight' => '6',
  1212. ),
  1213. 'teaser' => array(
  1214. 'label' => 'above',
  1215. 'settings' => array(),
  1216. 'type' => 'hidden',
  1217. 'weight' => 0,
  1218. ),
  1219. ),
  1220. 'entity_type' => 'node',
  1221. 'field_name' => 'field_popsu_ville_ville',
  1222. 'label' => 'Ville',
  1223. 'required' => 1,
  1224. 'settings' => array(
  1225. 'user_register_form' => FALSE,
  1226. ),
  1227. 'widget' => array(
  1228. 'active' => 1,
  1229. 'module' => 'options',
  1230. 'settings' => array(),
  1231. 'type' => 'options_select',
  1232. 'weight' => '2',
  1233. ),
  1234. ),
  1235. );
  1236. // Translatables
  1237. // Included for use with string extractors like potx.
  1238. t('POPSU');
  1239. t('Ville');
  1240. t('Ville (POPSU France)');
  1241. t('Villes concernées par ce thème');
  1242. return $fields;
  1243. }