showroom.features.field_instance.inc 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032
  1. <?php
  2. /**
  3. * @file
  4. * showroom.features.field_instance.inc
  5. */
  6. /**
  7. * Implements hook_field_default_field_instances().
  8. */
  9. function showroom_field_default_field_instances() {
  10. $field_instances = array();
  11. // Exported field_instance: 'node-showroom-body'.
  12. $field_instances['node-showroom-body'] = array(
  13. 'bundle' => 'showroom',
  14. 'default_value' => NULL,
  15. 'deleted' => 0,
  16. 'description' => '',
  17. 'display' => array(
  18. 'bookmark' => array(
  19. 'label' => 'above',
  20. 'settings' => array(),
  21. 'type' => 'hidden',
  22. 'weight' => 0,
  23. ),
  24. 'cardbig' => array(
  25. 'label' => 'above',
  26. 'settings' => array(),
  27. 'type' => 'hidden',
  28. 'weight' => 0,
  29. ),
  30. 'cardfull' => array(
  31. 'label' => 'above',
  32. 'settings' => array(),
  33. 'type' => 'hidden',
  34. 'weight' => 0,
  35. ),
  36. 'cardmedium' => array(
  37. 'label' => 'above',
  38. 'settings' => array(),
  39. 'type' => 'hidden',
  40. 'weight' => 0,
  41. ),
  42. 'cardsmall' => array(
  43. 'label' => 'above',
  44. 'settings' => array(),
  45. 'type' => 'hidden',
  46. 'weight' => 0,
  47. ),
  48. 'default' => array(
  49. 'label' => 'hidden',
  50. 'module' => 'text',
  51. 'settings' => array(),
  52. 'type' => 'text_default',
  53. 'weight' => 0,
  54. ),
  55. 'homeblock' => array(
  56. 'label' => 'above',
  57. 'settings' => array(),
  58. 'type' => 'hidden',
  59. 'weight' => 0,
  60. ),
  61. 'teaser' => array(
  62. 'label' => 'hidden',
  63. 'module' => 'text',
  64. 'settings' => array(
  65. 'trim_length' => 600,
  66. ),
  67. 'type' => 'text_summary_or_trimmed',
  68. 'weight' => 0,
  69. ),
  70. ),
  71. 'entity_type' => 'node',
  72. 'field_name' => 'body',
  73. 'label' => 'Body',
  74. 'required' => FALSE,
  75. 'settings' => array(
  76. 'display_summary' => TRUE,
  77. 'entity_translation_sync' => FALSE,
  78. 'text_processing' => 1,
  79. 'user_register_form' => FALSE,
  80. ),
  81. 'widget' => array(
  82. 'module' => 'text',
  83. 'settings' => array(
  84. 'rows' => 20,
  85. 'summary_rows' => 5,
  86. ),
  87. 'type' => 'text_textarea_with_summary',
  88. 'weight' => 5,
  89. ),
  90. );
  91. // Exported field_instance: 'node-showroom-field_public_address'.
  92. $field_instances['node-showroom-field_public_address'] = array(
  93. 'bundle' => 'showroom',
  94. 'default_value' => NULL,
  95. 'deleted' => 0,
  96. 'description' => '',
  97. 'display' => array(
  98. 'bookmark' => array(
  99. 'label' => 'above',
  100. 'settings' => array(),
  101. 'type' => 'hidden',
  102. 'weight' => 0,
  103. ),
  104. 'cardbig' => array(
  105. 'label' => 'above',
  106. 'settings' => array(),
  107. 'type' => 'hidden',
  108. 'weight' => 0,
  109. ),
  110. 'cardfull' => array(
  111. 'label' => 'above',
  112. 'settings' => array(),
  113. 'type' => 'hidden',
  114. 'weight' => 0,
  115. ),
  116. 'cardmedium' => array(
  117. 'label' => 'above',
  118. 'settings' => array(),
  119. 'type' => 'hidden',
  120. 'weight' => 0,
  121. ),
  122. 'cardsmall' => array(
  123. 'label' => 'above',
  124. 'settings' => array(),
  125. 'type' => 'hidden',
  126. 'weight' => 0,
  127. ),
  128. 'default' => array(
  129. 'label' => 'above',
  130. 'module' => 'addressfield',
  131. 'settings' => array(
  132. 'format_handlers' => array(
  133. 0 => 'address',
  134. ),
  135. 'use_widget_handlers' => 1,
  136. ),
  137. 'type' => 'addressfield_default',
  138. 'weight' => 2,
  139. ),
  140. 'homeblock' => array(
  141. 'label' => 'above',
  142. 'settings' => array(),
  143. 'type' => 'hidden',
  144. 'weight' => 0,
  145. ),
  146. 'teaser' => array(
  147. 'label' => 'above',
  148. 'settings' => array(),
  149. 'type' => 'hidden',
  150. 'weight' => 0,
  151. ),
  152. ),
  153. 'entity_type' => 'node',
  154. 'field_name' => 'field_public_address',
  155. 'label' => 'Adresse',
  156. 'required' => 0,
  157. 'settings' => array(
  158. 'entity_translation_sync' => FALSE,
  159. 'user_register_form' => FALSE,
  160. ),
  161. 'widget' => array(
  162. 'active' => 1,
  163. 'module' => 'addressfield',
  164. 'settings' => array(
  165. 'available_countries' => array(
  166. 'AD' => 'AD',
  167. 'AE' => 'AE',
  168. 'AF' => 'AF',
  169. 'AG' => 'AG',
  170. 'AI' => 'AI',
  171. 'AL' => 'AL',
  172. 'AM' => 'AM',
  173. 'AN' => 'AN',
  174. 'AO' => 'AO',
  175. 'AQ' => 'AQ',
  176. 'AR' => 'AR',
  177. 'AS' => 'AS',
  178. 'AT' => 'AT',
  179. 'AU' => 'AU',
  180. 'AW' => 'AW',
  181. 'AX' => 'AX',
  182. 'AZ' => 'AZ',
  183. 'BA' => 'BA',
  184. 'BB' => 'BB',
  185. 'BD' => 'BD',
  186. 'BE' => 'BE',
  187. 'BF' => 'BF',
  188. 'BG' => 'BG',
  189. 'BH' => 'BH',
  190. 'BI' => 'BI',
  191. 'BJ' => 'BJ',
  192. 'BL' => 'BL',
  193. 'BM' => 'BM',
  194. 'BN' => 'BN',
  195. 'BO' => 'BO',
  196. 'BQ' => 'BQ',
  197. 'BR' => 'BR',
  198. 'BS' => 'BS',
  199. 'BT' => 'BT',
  200. 'BV' => 'BV',
  201. 'BW' => 'BW',
  202. 'BY' => 'BY',
  203. 'BZ' => 'BZ',
  204. 'CA' => 'CA',
  205. 'CC' => 'CC',
  206. 'CD' => 'CD',
  207. 'CF' => 'CF',
  208. 'CG' => 'CG',
  209. 'CH' => 'CH',
  210. 'CI' => 'CI',
  211. 'CK' => 'CK',
  212. 'CL' => 'CL',
  213. 'CM' => 'CM',
  214. 'CN' => 'CN',
  215. 'CO' => 'CO',
  216. 'CR' => 'CR',
  217. 'CU' => 'CU',
  218. 'CV' => 'CV',
  219. 'CW' => 'CW',
  220. 'CX' => 'CX',
  221. 'CY' => 'CY',
  222. 'CZ' => 'CZ',
  223. 'DE' => 'DE',
  224. 'DJ' => 'DJ',
  225. 'DK' => 'DK',
  226. 'DM' => 'DM',
  227. 'DO' => 'DO',
  228. 'DZ' => 'DZ',
  229. 'EC' => 'EC',
  230. 'EE' => 'EE',
  231. 'EG' => 'EG',
  232. 'EH' => 'EH',
  233. 'ER' => 'ER',
  234. 'ES' => 'ES',
  235. 'ET' => 'ET',
  236. 'FI' => 'FI',
  237. 'FJ' => 'FJ',
  238. 'FK' => 'FK',
  239. 'FM' => 'FM',
  240. 'FO' => 'FO',
  241. 'FR' => 'FR',
  242. 'GA' => 'GA',
  243. 'GB' => 'GB',
  244. 'GD' => 'GD',
  245. 'GE' => 'GE',
  246. 'GF' => 'GF',
  247. 'GG' => 'GG',
  248. 'GH' => 'GH',
  249. 'GI' => 'GI',
  250. 'GL' => 'GL',
  251. 'GM' => 'GM',
  252. 'GN' => 'GN',
  253. 'GP' => 'GP',
  254. 'GQ' => 'GQ',
  255. 'GR' => 'GR',
  256. 'GS' => 'GS',
  257. 'GT' => 'GT',
  258. 'GU' => 'GU',
  259. 'GW' => 'GW',
  260. 'GY' => 'GY',
  261. 'HK' => 'HK',
  262. 'HM' => 'HM',
  263. 'HN' => 'HN',
  264. 'HR' => 'HR',
  265. 'HT' => 'HT',
  266. 'HU' => 'HU',
  267. 'ID' => 'ID',
  268. 'IE' => 'IE',
  269. 'IL' => 'IL',
  270. 'IM' => 'IM',
  271. 'IN' => 'IN',
  272. 'IO' => 'IO',
  273. 'IQ' => 'IQ',
  274. 'IR' => 'IR',
  275. 'IS' => 'IS',
  276. 'IT' => 'IT',
  277. 'JE' => 'JE',
  278. 'JM' => 'JM',
  279. 'JO' => 'JO',
  280. 'JP' => 'JP',
  281. 'KE' => 'KE',
  282. 'KG' => 'KG',
  283. 'KH' => 'KH',
  284. 'KI' => 'KI',
  285. 'KM' => 'KM',
  286. 'KN' => 'KN',
  287. 'KP' => 'KP',
  288. 'KR' => 'KR',
  289. 'KW' => 'KW',
  290. 'KY' => 'KY',
  291. 'KZ' => 'KZ',
  292. 'LA' => 'LA',
  293. 'LB' => 'LB',
  294. 'LC' => 'LC',
  295. 'LI' => 'LI',
  296. 'LK' => 'LK',
  297. 'LR' => 'LR',
  298. 'LS' => 'LS',
  299. 'LT' => 'LT',
  300. 'LU' => 'LU',
  301. 'LV' => 'LV',
  302. 'LY' => 'LY',
  303. 'MA' => 'MA',
  304. 'MC' => 'MC',
  305. 'MD' => 'MD',
  306. 'ME' => 'ME',
  307. 'MF' => 'MF',
  308. 'MG' => 'MG',
  309. 'MH' => 'MH',
  310. 'MK' => 'MK',
  311. 'ML' => 'ML',
  312. 'MM' => 'MM',
  313. 'MN' => 'MN',
  314. 'MO' => 'MO',
  315. 'MP' => 'MP',
  316. 'MQ' => 'MQ',
  317. 'MR' => 'MR',
  318. 'MS' => 'MS',
  319. 'MT' => 'MT',
  320. 'MU' => 'MU',
  321. 'MV' => 'MV',
  322. 'MW' => 'MW',
  323. 'MX' => 'MX',
  324. 'MY' => 'MY',
  325. 'MZ' => 'MZ',
  326. 'NA' => 'NA',
  327. 'NC' => 'NC',
  328. 'NE' => 'NE',
  329. 'NF' => 'NF',
  330. 'NG' => 'NG',
  331. 'NI' => 'NI',
  332. 'NL' => 'NL',
  333. 'NO' => 'NO',
  334. 'NP' => 'NP',
  335. 'NR' => 'NR',
  336. 'NU' => 'NU',
  337. 'NZ' => 'NZ',
  338. 'OM' => 'OM',
  339. 'PA' => 'PA',
  340. 'PE' => 'PE',
  341. 'PF' => 'PF',
  342. 'PG' => 'PG',
  343. 'PH' => 'PH',
  344. 'PK' => 'PK',
  345. 'PL' => 'PL',
  346. 'PM' => 'PM',
  347. 'PN' => 'PN',
  348. 'PR' => 'PR',
  349. 'PS' => 'PS',
  350. 'PT' => 'PT',
  351. 'PW' => 'PW',
  352. 'PY' => 'PY',
  353. 'QA' => 'QA',
  354. 'RE' => 'RE',
  355. 'RO' => 'RO',
  356. 'RS' => 'RS',
  357. 'RU' => 'RU',
  358. 'RW' => 'RW',
  359. 'SA' => 'SA',
  360. 'SB' => 'SB',
  361. 'SC' => 'SC',
  362. 'SD' => 'SD',
  363. 'SE' => 'SE',
  364. 'SG' => 'SG',
  365. 'SH' => 'SH',
  366. 'SI' => 'SI',
  367. 'SJ' => 'SJ',
  368. 'SK' => 'SK',
  369. 'SL' => 'SL',
  370. 'SM' => 'SM',
  371. 'SN' => 'SN',
  372. 'SO' => 'SO',
  373. 'SR' => 'SR',
  374. 'SS' => 'SS',
  375. 'ST' => 'ST',
  376. 'SV' => 'SV',
  377. 'SX' => 'SX',
  378. 'SY' => 'SY',
  379. 'SZ' => 'SZ',
  380. 'TC' => 'TC',
  381. 'TD' => 'TD',
  382. 'TF' => 'TF',
  383. 'TG' => 'TG',
  384. 'TH' => 'TH',
  385. 'TJ' => 'TJ',
  386. 'TK' => 'TK',
  387. 'TL' => 'TL',
  388. 'TM' => 'TM',
  389. 'TN' => 'TN',
  390. 'TO' => 'TO',
  391. 'TR' => 'TR',
  392. 'TT' => 'TT',
  393. 'TV' => 'TV',
  394. 'TW' => 'TW',
  395. 'TZ' => 'TZ',
  396. 'UA' => 'UA',
  397. 'UG' => 'UG',
  398. 'UM' => 'UM',
  399. 'US' => 'US',
  400. 'UY' => 'UY',
  401. 'UZ' => 'UZ',
  402. 'VA' => 'VA',
  403. 'VC' => 'VC',
  404. 'VE' => 'VE',
  405. 'VG' => 'VG',
  406. 'VI' => 'VI',
  407. 'VN' => 'VN',
  408. 'VU' => 'VU',
  409. 'WF' => 'WF',
  410. 'WS' => 'WS',
  411. 'YE' => 'YE',
  412. 'YT' => 'YT',
  413. 'ZA' => 'ZA',
  414. 'ZM' => 'ZM',
  415. 'ZW' => 'ZW',
  416. ),
  417. 'default_country' => '',
  418. 'format_handlers' => array(
  419. 'address' => 'address',
  420. 'address-hide-postal-code' => 0,
  421. 'address-hide-street' => 0,
  422. 'address-hide-country' => 0,
  423. 'organisation' => 0,
  424. 'name-full' => 0,
  425. 'name-oneline' => 0,
  426. 'address-optional' => 0,
  427. ),
  428. ),
  429. 'type' => 'addressfield_standard',
  430. 'weight' => 8,
  431. ),
  432. );
  433. // Exported field_instance: 'node-showroom-field_public_email'.
  434. $field_instances['node-showroom-field_public_email'] = array(
  435. 'bundle' => 'showroom',
  436. 'default_value' => NULL,
  437. 'deleted' => 0,
  438. 'description' => '',
  439. 'display' => array(
  440. 'bookmark' => array(
  441. 'label' => 'above',
  442. 'settings' => array(),
  443. 'type' => 'hidden',
  444. 'weight' => 0,
  445. ),
  446. 'cardbig' => array(
  447. 'label' => 'above',
  448. 'settings' => array(),
  449. 'type' => 'hidden',
  450. 'weight' => 0,
  451. ),
  452. 'cardfull' => array(
  453. 'label' => 'above',
  454. 'settings' => array(),
  455. 'type' => 'hidden',
  456. 'weight' => 0,
  457. ),
  458. 'cardmedium' => array(
  459. 'label' => 'above',
  460. 'settings' => array(),
  461. 'type' => 'hidden',
  462. 'weight' => 0,
  463. ),
  464. 'cardsmall' => array(
  465. 'label' => 'above',
  466. 'settings' => array(),
  467. 'type' => 'hidden',
  468. 'weight' => 0,
  469. ),
  470. 'default' => array(
  471. 'label' => 'above',
  472. 'module' => 'email',
  473. 'settings' => array(),
  474. 'type' => 'email_default',
  475. 'weight' => 3,
  476. ),
  477. 'homeblock' => array(
  478. 'label' => 'above',
  479. 'settings' => array(),
  480. 'type' => 'hidden',
  481. 'weight' => 0,
  482. ),
  483. 'teaser' => array(
  484. 'label' => 'above',
  485. 'settings' => array(),
  486. 'type' => 'hidden',
  487. 'weight' => 0,
  488. ),
  489. ),
  490. 'entity_type' => 'node',
  491. 'field_name' => 'field_public_email',
  492. 'label' => 'Email',
  493. 'required' => 0,
  494. 'settings' => array(
  495. 'entity_translation_sync' => FALSE,
  496. 'user_register_form' => FALSE,
  497. ),
  498. 'widget' => array(
  499. 'active' => 1,
  500. 'module' => 'email',
  501. 'settings' => array(
  502. 'size' => 60,
  503. ),
  504. 'type' => 'email_textfield',
  505. 'weight' => 10,
  506. ),
  507. );
  508. // Exported field_instance: 'node-showroom-field_public_phone'.
  509. $field_instances['node-showroom-field_public_phone'] = array(
  510. 'bundle' => 'showroom',
  511. 'deleted' => 0,
  512. 'description' => '',
  513. 'display' => array(
  514. 'bookmark' => array(
  515. 'label' => 'above',
  516. 'settings' => array(),
  517. 'type' => 'hidden',
  518. 'weight' => 0,
  519. ),
  520. 'cardbig' => array(
  521. 'label' => 'above',
  522. 'settings' => array(),
  523. 'type' => 'hidden',
  524. 'weight' => 0,
  525. ),
  526. 'cardfull' => array(
  527. 'label' => 'above',
  528. 'settings' => array(),
  529. 'type' => 'hidden',
  530. 'weight' => 0,
  531. ),
  532. 'cardmedium' => array(
  533. 'label' => 'above',
  534. 'settings' => array(),
  535. 'type' => 'hidden',
  536. 'weight' => 0,
  537. ),
  538. 'cardsmall' => array(
  539. 'label' => 'above',
  540. 'settings' => array(),
  541. 'type' => 'hidden',
  542. 'weight' => 0,
  543. ),
  544. 'default' => array(
  545. 'label' => 'above',
  546. 'module' => 'cck_phone',
  547. 'settings' => array(),
  548. 'type' => 'global_phone_number',
  549. 'weight' => 4,
  550. ),
  551. 'homeblock' => array(
  552. 'label' => 'above',
  553. 'settings' => array(),
  554. 'type' => 'hidden',
  555. 'weight' => 0,
  556. ),
  557. 'teaser' => array(
  558. 'label' => 'above',
  559. 'settings' => array(),
  560. 'type' => 'hidden',
  561. 'weight' => 0,
  562. ),
  563. ),
  564. 'entity_type' => 'node',
  565. 'field_name' => 'field_public_phone',
  566. 'label' => 'Phone',
  567. 'required' => 0,
  568. 'settings' => array(
  569. 'all_country_codes' => 1,
  570. 'country_code_position' => 'after',
  571. 'country_codes' => array(
  572. 'country_selection' => array(
  573. 'ad' => 0,
  574. 'ae' => 0,
  575. 'af' => 0,
  576. 'ag' => 0,
  577. 'ai' => 0,
  578. 'al' => 0,
  579. 'am' => 0,
  580. 'an' => 0,
  581. 'ao' => 0,
  582. 'ar' => 0,
  583. 'as' => 0,
  584. 'at' => 0,
  585. 'au' => 0,
  586. 'aw' => 0,
  587. 'az' => 0,
  588. 'ba' => 0,
  589. 'bb' => 0,
  590. 'bd' => 0,
  591. 'be' => 0,
  592. 'bf' => 0,
  593. 'bg' => 0,
  594. 'bh' => 0,
  595. 'bi' => 0,
  596. 'bj' => 0,
  597. 'bm' => 0,
  598. 'bn' => 0,
  599. 'bo' => 0,
  600. 'br' => 0,
  601. 'bs' => 0,
  602. 'bt' => 0,
  603. 'bw' => 0,
  604. 'by' => 0,
  605. 'bz' => 0,
  606. 'ca' => 0,
  607. 'cc' => 0,
  608. 'cd' => 0,
  609. 'cf' => 0,
  610. 'cg' => 0,
  611. 'ch' => 0,
  612. 'ci' => 0,
  613. 'ck' => 0,
  614. 'cl' => 0,
  615. 'cm' => 0,
  616. 'cn' => 0,
  617. 'co' => 0,
  618. 'cr' => 0,
  619. 'cu' => 0,
  620. 'cv' => 0,
  621. 'cx' => 0,
  622. 'cy' => 0,
  623. 'cz' => 0,
  624. 'de' => 0,
  625. 'dj' => 0,
  626. 'dk' => 0,
  627. 'dm' => 0,
  628. 'do' => 0,
  629. 'dz' => 0,
  630. 'ec' => 0,
  631. 'ee' => 0,
  632. 'eg' => 0,
  633. 'er' => 0,
  634. 'es' => 0,
  635. 'et' => 0,
  636. 'fi' => 0,
  637. 'fj' => 0,
  638. 'fk' => 0,
  639. 'fm' => 0,
  640. 'fo' => 0,
  641. 'fr' => 0,
  642. 'ga' => 0,
  643. 'gb' => 0,
  644. 'gd' => 0,
  645. 'ge' => 0,
  646. 'gf' => 0,
  647. 'gh' => 0,
  648. 'gi' => 0,
  649. 'gl' => 0,
  650. 'gm' => 0,
  651. 'gn' => 0,
  652. 'gp' => 0,
  653. 'gq' => 0,
  654. 'gr' => 0,
  655. 'gt' => 0,
  656. 'gu' => 0,
  657. 'gw' => 0,
  658. 'gy' => 0,
  659. 'hk' => 0,
  660. 'hn' => 0,
  661. 'hr' => 0,
  662. 'ht' => 0,
  663. 'hu' => 0,
  664. 'id' => 0,
  665. 'ie' => 0,
  666. 'il' => 0,
  667. 'in' => 0,
  668. 'io' => 0,
  669. 'iq' => 0,
  670. 'ir' => 0,
  671. 'is' => 0,
  672. 'it' => 0,
  673. 'jm' => 0,
  674. 'jo' => 0,
  675. 'jp' => 0,
  676. 'ke' => 0,
  677. 'kg' => 0,
  678. 'kh' => 0,
  679. 'ki' => 0,
  680. 'km' => 0,
  681. 'kn' => 0,
  682. 'kp' => 0,
  683. 'kr' => 0,
  684. 'kw' => 0,
  685. 'ky' => 0,
  686. 'kz' => 0,
  687. 'la' => 0,
  688. 'lb' => 0,
  689. 'lc' => 0,
  690. 'li' => 0,
  691. 'lk' => 0,
  692. 'lr' => 0,
  693. 'ls' => 0,
  694. 'lt' => 0,
  695. 'lu' => 0,
  696. 'lv' => 0,
  697. 'ly' => 0,
  698. 'ma' => 0,
  699. 'mc' => 0,
  700. 'md' => 0,
  701. 'me' => 0,
  702. 'mg' => 0,
  703. 'mh' => 0,
  704. 'mk' => 0,
  705. 'ml' => 0,
  706. 'mm' => 0,
  707. 'mn' => 0,
  708. 'mo' => 0,
  709. 'mp' => 0,
  710. 'mq' => 0,
  711. 'mr' => 0,
  712. 'ms' => 0,
  713. 'mt' => 0,
  714. 'mu' => 0,
  715. 'mv' => 0,
  716. 'mw' => 0,
  717. 'mx' => 0,
  718. 'my' => 0,
  719. 'mz' => 0,
  720. 'na' => 0,
  721. 'nc' => 0,
  722. 'ne' => 0,
  723. 'nf' => 0,
  724. 'ng' => 0,
  725. 'ni' => 0,
  726. 'nl' => 0,
  727. 'no' => 0,
  728. 'np' => 0,
  729. 'nr' => 0,
  730. 'nu' => 0,
  731. 'nz' => 0,
  732. 'om' => 0,
  733. 'pa' => 0,
  734. 'pe' => 0,
  735. 'pf' => 0,
  736. 'pg' => 0,
  737. 'ph' => 0,
  738. 'pk' => 0,
  739. 'pl' => 0,
  740. 'pm' => 0,
  741. 'pr' => 0,
  742. 'ps' => 0,
  743. 'pt' => 0,
  744. 'pw' => 0,
  745. 'py' => 0,
  746. 'qa' => 0,
  747. 'ro' => 0,
  748. 'rs' => 0,
  749. 'ru' => 0,
  750. 'rw' => 0,
  751. 'sa' => 0,
  752. 'sb' => 0,
  753. 'sc' => 0,
  754. 'sd' => 0,
  755. 'se' => 0,
  756. 'sg' => 0,
  757. 'sh' => 0,
  758. 'si' => 0,
  759. 'sk' => 0,
  760. 'sl' => 0,
  761. 'sm' => 0,
  762. 'sn' => 0,
  763. 'so' => 0,
  764. 'sr' => 0,
  765. 'ss' => 0,
  766. 'st' => 0,
  767. 'sv' => 0,
  768. 'sy' => 0,
  769. 'sz' => 0,
  770. 'tc' => 0,
  771. 'td' => 0,
  772. 'tg' => 0,
  773. 'th' => 0,
  774. 'tj' => 0,
  775. 'tk' => 0,
  776. 'tm' => 0,
  777. 'tn' => 0,
  778. 'to' => 0,
  779. 'tp' => 0,
  780. 'tr' => 0,
  781. 'tt' => 0,
  782. 'tv' => 0,
  783. 'tw' => 0,
  784. 'tz' => 0,
  785. 'ua' => 0,
  786. 'ug' => 0,
  787. 'us' => 0,
  788. 'uy' => 0,
  789. 'uz' => 0,
  790. 'va' => 0,
  791. 'vc' => 0,
  792. 've' => 0,
  793. 'vg' => 0,
  794. 'vi' => 0,
  795. 'vn' => 0,
  796. 'vu' => 0,
  797. 'wf' => 0,
  798. 'ws' => 0,
  799. 'ye' => 0,
  800. 'yt' => 0,
  801. 'za' => 0,
  802. 'zm' => 0,
  803. 'zw' => 0,
  804. ),
  805. 'hide_single_cc' => 0,
  806. ),
  807. 'default_country' => 'af',
  808. 'enable_country_level_validation' => 1,
  809. 'enable_default_country' => 0,
  810. 'enable_extension' => 0,
  811. 'entity_translation_sync' => FALSE,
  812. 'user_register_form' => FALSE,
  813. ),
  814. 'widget' => array(
  815. 'active' => 0,
  816. 'module' => 'cck_phone',
  817. 'settings' => array(
  818. 'size' => 15,
  819. ),
  820. 'type' => 'phone_number',
  821. 'weight' => 12,
  822. ),
  823. );
  824. // Exported field_instance: 'node-showroom-field_tode_showroom'.
  825. $field_instances['node-showroom-field_tode_showroom'] = array(
  826. 'bundle' => 'showroom',
  827. 'deleted' => 0,
  828. 'description' => '',
  829. 'display' => array(
  830. 'bookmark' => array(
  831. 'label' => 'above',
  832. 'settings' => array(),
  833. 'type' => 'hidden',
  834. 'weight' => 0,
  835. ),
  836. 'cardbig' => array(
  837. 'label' => 'above',
  838. 'settings' => array(),
  839. 'type' => 'hidden',
  840. 'weight' => 0,
  841. ),
  842. 'cardfull' => array(
  843. 'label' => 'above',
  844. 'settings' => array(),
  845. 'type' => 'hidden',
  846. 'weight' => 0,
  847. ),
  848. 'cardmedium' => array(
  849. 'label' => 'above',
  850. 'settings' => array(),
  851. 'type' => 'hidden',
  852. 'weight' => 0,
  853. ),
  854. 'cardsmall' => array(
  855. 'label' => 'above',
  856. 'settings' => array(),
  857. 'type' => 'hidden',
  858. 'weight' => 0,
  859. ),
  860. 'default' => array(
  861. 'label' => 'above',
  862. 'module' => 'taxonomy',
  863. 'settings' => array(),
  864. 'type' => 'taxonomy_term_reference_link',
  865. 'weight' => 1,
  866. ),
  867. 'homeblock' => array(
  868. 'label' => 'above',
  869. 'settings' => array(),
  870. 'type' => 'hidden',
  871. 'weight' => 0,
  872. ),
  873. 'teaser' => array(
  874. 'label' => 'above',
  875. 'settings' => array(),
  876. 'type' => 'hidden',
  877. 'weight' => 0,
  878. ),
  879. ),
  880. 'entity_type' => 'node',
  881. 'field_name' => 'field_tode_showroom',
  882. 'label' => 'Showroom',
  883. 'required' => 0,
  884. 'settings' => array(
  885. 'entity_translation_sync' => FALSE,
  886. 'user_register_form' => FALSE,
  887. ),
  888. 'widget' => array(
  889. 'active' => 1,
  890. 'module' => 'tode',
  891. 'settings' => array(
  892. 'choose_term_parent' => 0,
  893. 'maxlength' => 255,
  894. 'redirect_node_to_term' => 0,
  895. 'redirect_term_to_node' => 1,
  896. 'show_create_tode' => 0,
  897. 'show_term_form' => 0,
  898. 'size' => 60,
  899. ),
  900. 'type' => 'tode',
  901. 'weight' => 1,
  902. ),
  903. );
  904. // Exported field_instance: 'taxonomy_term-showroom-description_field'.
  905. $field_instances['taxonomy_term-showroom-description_field'] = array(
  906. 'bundle' => 'showroom',
  907. 'default_value' => NULL,
  908. 'deleted' => 0,
  909. 'description' => '',
  910. 'display' => array(
  911. 'default' => array(
  912. 'label' => 'above',
  913. 'settings' => array(),
  914. 'type' => 'hidden',
  915. 'weight' => 1,
  916. ),
  917. ),
  918. 'entity_type' => 'taxonomy_term',
  919. 'field_name' => 'description_field',
  920. 'label' => 'Description',
  921. 'required' => FALSE,
  922. 'settings' => array(
  923. 'display_summary' => 0,
  924. 'entity_translation_sync' => FALSE,
  925. 'hide_label' => array(
  926. 'entity' => 'entity',
  927. 'page' => 'page',
  928. ),
  929. 'text_processing' => 1,
  930. 'user_register_form' => FALSE,
  931. ),
  932. 'widget' => array(
  933. 'module' => 'text',
  934. 'settings' => array(
  935. 'rows' => 20,
  936. 'summary_rows' => 5,
  937. ),
  938. 'type' => 'text_textarea_with_summary',
  939. 'weight' => -5,
  940. ),
  941. );
  942. // Exported field_instance: 'taxonomy_term-showroom-name_field'.
  943. $field_instances['taxonomy_term-showroom-name_field'] = array(
  944. 'bundle' => 'showroom',
  945. 'default_value' => NULL,
  946. 'deleted' => 0,
  947. 'description' => '',
  948. 'display' => array(
  949. 'default' => array(
  950. 'label' => 'above',
  951. 'settings' => array(),
  952. 'type' => 'hidden',
  953. 'weight' => 0,
  954. ),
  955. ),
  956. 'entity_type' => 'taxonomy_term',
  957. 'field_name' => 'name_field',
  958. 'label' => 'Nom',
  959. 'required' => TRUE,
  960. 'settings' => array(
  961. 'entity_translation_sync' => FALSE,
  962. 'hide_label' => array(
  963. 'entity' => 'entity',
  964. 'page' => 'page',
  965. ),
  966. 'text_processing' => 0,
  967. 'user_register_form' => FALSE,
  968. ),
  969. 'widget' => array(
  970. 'module' => 'text',
  971. 'settings' => array(
  972. 'size' => 60,
  973. ),
  974. 'type' => 'text_textfield',
  975. 'weight' => -5,
  976. ),
  977. );
  978. // Exported field_instance: 'user-user-field_showroom'.
  979. $field_instances['user-user-field_showroom'] = array(
  980. 'bundle' => 'user',
  981. 'default_value' => NULL,
  982. 'deleted' => 0,
  983. 'description' => '',
  984. 'display' => array(
  985. 'default' => array(
  986. 'label' => 'above',
  987. 'module' => 'taxonomy',
  988. 'settings' => array(),
  989. 'type' => 'taxonomy_term_reference_link',
  990. 'weight' => 2,
  991. ),
  992. ),
  993. 'entity_type' => 'user',
  994. 'field_name' => 'field_showroom',
  995. 'label' => 'Showroom',
  996. 'required' => 0,
  997. 'settings' => array(
  998. 'entity_translation_sync' => FALSE,
  999. 'user_register_form' => 1,
  1000. ),
  1001. 'widget' => array(
  1002. 'active' => 1,
  1003. 'module' => 'options',
  1004. 'settings' => array(
  1005. 'content_taxonomy_opt_groups' => 0,
  1006. ),
  1007. 'type' => 'options_select',
  1008. 'weight' => 3,
  1009. ),
  1010. );
  1011. // Translatables
  1012. // Included for use with string extractors like potx.
  1013. t('Adresse');
  1014. t('Body');
  1015. t('Description');
  1016. t('Email');
  1017. t('Nom');
  1018. t('Phone');
  1019. t('Showroom');
  1020. return $field_instances;
  1021. }