materio_content_types.features.field_instance.inc 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806
  1. <?php
  2. /**
  3. * @file
  4. * materio_content_types.features.field_instance.inc
  5. */
  6. /**
  7. * Implements hook_field_default_field_instances().
  8. */
  9. function materio_content_types_field_default_field_instances() {
  10. $field_instances = array();
  11. // Exported field_instance: 'node-breve-body'.
  12. $field_instances['node-breve-body'] = array(
  13. 'bundle' => 'breve',
  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' => 9,
  23. ),
  24. 'cardbig' => array(
  25. 'label' => 'hidden',
  26. 'module' => 'text',
  27. 'settings' => array(),
  28. 'type' => 'text_default',
  29. 'weight' => 5,
  30. ),
  31. 'cardfull' => array(
  32. 'label' => 'hidden',
  33. 'module' => 'text',
  34. 'settings' => array(),
  35. 'type' => 'text_default',
  36. 'weight' => 12,
  37. ),
  38. 'cardmedium' => array(
  39. 'label' => 'hidden',
  40. 'module' => 'text',
  41. 'settings' => array(),
  42. 'type' => 'text_default',
  43. 'weight' => 3,
  44. ),
  45. 'cardsmall' => array(
  46. 'label' => 'above',
  47. 'settings' => array(),
  48. 'type' => 'hidden',
  49. 'weight' => 9,
  50. ),
  51. 'default' => array(
  52. 'label' => 'hidden',
  53. 'module' => 'text',
  54. 'settings' => array(),
  55. 'type' => 'text_default',
  56. 'weight' => 1,
  57. ),
  58. 'homeblock' => array(
  59. 'label' => 'above',
  60. 'settings' => array(),
  61. 'type' => 'hidden',
  62. 'weight' => 12,
  63. ),
  64. 'print' => array(
  65. 'label' => 'above',
  66. 'settings' => array(),
  67. 'type' => 'hidden',
  68. 'weight' => 0,
  69. ),
  70. 'teaser' => array(
  71. 'label' => 'hidden',
  72. 'module' => 'text',
  73. 'settings' => array(),
  74. 'type' => 'text_default',
  75. 'weight' => 2,
  76. ),
  77. ),
  78. 'entity_type' => 'node',
  79. 'field_name' => 'body',
  80. 'label' => 'Body',
  81. 'required' => FALSE,
  82. 'settings' => array(
  83. 'display_summary' => TRUE,
  84. 'entity_translation_sync' => FALSE,
  85. 'text_processing' => 1,
  86. 'user_register_form' => FALSE,
  87. ),
  88. 'widget' => array(
  89. 'module' => 'text',
  90. 'settings' => array(
  91. 'rows' => 20,
  92. 'summary_rows' => 5,
  93. ),
  94. 'type' => 'text_textarea_with_summary',
  95. 'weight' => -4,
  96. ),
  97. );
  98. // Exported field_instance: 'node-breve-field_authored_on'.
  99. $field_instances['node-breve-field_authored_on'] = array(
  100. 'bundle' => 'breve',
  101. 'default_value' => NULL,
  102. 'deleted' => 0,
  103. 'description' => '',
  104. 'display' => array(
  105. 'bookmark' => array(
  106. 'label' => 'above',
  107. 'settings' => array(),
  108. 'type' => 'hidden',
  109. 'weight' => 0,
  110. ),
  111. 'cardbig' => array(
  112. 'label' => 'hidden',
  113. 'module' => 'computed_field',
  114. 'settings' => array(),
  115. 'type' => 'computed_field_unsanitized',
  116. 'weight' => 5,
  117. ),
  118. 'cardfull' => array(
  119. 'label' => 'hidden',
  120. 'module' => 'computed_field',
  121. 'settings' => array(),
  122. 'type' => 'computed_field_unsanitized',
  123. 'weight' => 13,
  124. ),
  125. 'cardmedium' => array(
  126. 'label' => 'hidden',
  127. 'module' => 'computed_field',
  128. 'settings' => array(),
  129. 'type' => 'computed_field_unsanitized',
  130. 'weight' => 3,
  131. ),
  132. 'cardsmall' => array(
  133. 'label' => 'hidden',
  134. 'module' => 'computed_field',
  135. 'settings' => array(),
  136. 'type' => 'computed_field_plain',
  137. 'weight' => 2,
  138. ),
  139. 'default' => array(
  140. 'label' => 'above',
  141. 'module' => 'computed_field',
  142. 'settings' => array(),
  143. 'type' => 'computed_field_plain',
  144. 'weight' => 10,
  145. ),
  146. 'homeblock' => array(
  147. 'label' => 'above',
  148. 'settings' => array(),
  149. 'type' => 'hidden',
  150. 'weight' => 4,
  151. ),
  152. 'print' => array(
  153. 'label' => 'above',
  154. 'settings' => array(),
  155. 'type' => 'hidden',
  156. 'weight' => 0,
  157. ),
  158. 'teaser' => array(
  159. 'label' => 'hidden',
  160. 'settings' => array(),
  161. 'type' => 'hidden',
  162. 'weight' => 6,
  163. ),
  164. ),
  165. 'entity_type' => 'node',
  166. 'field_name' => 'field_authored_on',
  167. 'label' => 'Authored on',
  168. 'required' => 0,
  169. 'settings' => array(
  170. 'entity_translation_sync' => FALSE,
  171. 'user_register_form' => FALSE,
  172. ),
  173. 'widget' => array(
  174. 'active' => 0,
  175. 'module' => 'field_extrawidgets',
  176. 'settings' => array(
  177. 'display_empty' => 0,
  178. 'formatter' => '',
  179. 'formatter_settings' => array(),
  180. ),
  181. 'type' => 'field_extrawidgets_read_only',
  182. 'weight' => 7,
  183. ),
  184. );
  185. // Exported field_instance: 'node-breve-field_materiau_ref'.
  186. $field_instances['node-breve-field_materiau_ref'] = array(
  187. 'bundle' => 'breve',
  188. 'default_value' => NULL,
  189. 'deleted' => 0,
  190. 'description' => '',
  191. 'display' => array(
  192. 'bookmark' => array(
  193. 'label' => 'above',
  194. 'settings' => array(),
  195. 'type' => 'hidden',
  196. 'weight' => 7,
  197. ),
  198. 'cardbig' => array(
  199. 'label' => 'above',
  200. 'module' => 'entityreference',
  201. 'settings' => array(
  202. 'link' => FALSE,
  203. ),
  204. 'type' => 'entityreference_label',
  205. 'weight' => 9,
  206. ),
  207. 'cardfull' => array(
  208. 'label' => 'above',
  209. 'module' => 'entityreference',
  210. 'settings' => array(
  211. 'link' => FALSE,
  212. ),
  213. 'type' => 'entityreference_label',
  214. 'weight' => 14,
  215. ),
  216. 'cardmedium' => array(
  217. 'label' => 'above',
  218. 'module' => 'entityreference',
  219. 'settings' => array(
  220. 'link' => FALSE,
  221. ),
  222. 'type' => 'entityreference_label',
  223. 'weight' => 8,
  224. ),
  225. 'cardsmall' => array(
  226. 'label' => 'above',
  227. 'settings' => array(),
  228. 'type' => 'hidden',
  229. 'weight' => 8,
  230. ),
  231. 'default' => array(
  232. 'label' => 'above',
  233. 'settings' => array(),
  234. 'type' => 'hidden',
  235. 'weight' => 8,
  236. ),
  237. 'homeblock' => array(
  238. 'label' => 'above',
  239. 'settings' => array(),
  240. 'type' => 'hidden',
  241. 'weight' => 9,
  242. ),
  243. 'print' => array(
  244. 'label' => 'above',
  245. 'settings' => array(),
  246. 'type' => 'hidden',
  247. 'weight' => 0,
  248. ),
  249. 'teaser' => array(
  250. 'label' => 'above',
  251. 'settings' => array(),
  252. 'type' => 'hidden',
  253. 'weight' => 9,
  254. ),
  255. ),
  256. 'entity_type' => 'node',
  257. 'field_name' => 'field_materiau_ref',
  258. 'label' => 'Materiau(x) lié(s)',
  259. 'required' => 0,
  260. 'settings' => array(
  261. 'entity_translation_sync' => FALSE,
  262. 'user_register_form' => FALSE,
  263. ),
  264. 'widget' => array(
  265. 'active' => 1,
  266. 'module' => 'entityreference',
  267. 'settings' => array(
  268. 'match_operator' => 'CONTAINS',
  269. 'path' => '',
  270. 'size' => 60,
  271. ),
  272. 'type' => 'entityreference_autocomplete',
  273. 'weight' => 1,
  274. ),
  275. );
  276. // Exported field_instance: 'node-breve-field_memo'.
  277. $field_instances['node-breve-field_memo'] = array(
  278. 'bundle' => 'breve',
  279. 'default_value' => NULL,
  280. 'deleted' => 0,
  281. 'description' => '',
  282. 'display' => array(
  283. 'bookmark' => array(
  284. 'label' => 'above',
  285. 'settings' => array(),
  286. 'type' => 'hidden',
  287. 'weight' => 8,
  288. ),
  289. 'cardbig' => array(
  290. 'label' => 'above',
  291. 'settings' => array(),
  292. 'type' => 'hidden',
  293. 'weight' => 7,
  294. ),
  295. 'cardfull' => array(
  296. 'label' => 'above',
  297. 'settings' => array(),
  298. 'type' => 'hidden',
  299. 'weight' => 9,
  300. ),
  301. 'cardmedium' => array(
  302. 'label' => 'above',
  303. 'settings' => array(),
  304. 'type' => 'hidden',
  305. 'weight' => 9,
  306. ),
  307. 'cardsmall' => array(
  308. 'label' => 'above',
  309. 'settings' => array(),
  310. 'type' => 'hidden',
  311. 'weight' => 6,
  312. ),
  313. 'default' => array(
  314. 'label' => 'above',
  315. 'settings' => array(),
  316. 'type' => 'hidden',
  317. 'weight' => 9,
  318. ),
  319. 'homeblock' => array(
  320. 'label' => 'above',
  321. 'settings' => array(),
  322. 'type' => 'hidden',
  323. 'weight' => 10,
  324. ),
  325. 'print' => array(
  326. 'label' => 'above',
  327. 'settings' => array(),
  328. 'type' => 'hidden',
  329. 'weight' => 0,
  330. ),
  331. 'teaser' => array(
  332. 'label' => 'above',
  333. 'settings' => array(),
  334. 'type' => 'hidden',
  335. 'weight' => 10,
  336. ),
  337. ),
  338. 'entity_type' => 'node',
  339. 'field_name' => 'field_memo',
  340. 'label' => 'Mémo',
  341. 'required' => 0,
  342. 'settings' => array(
  343. 'entity_translation_sync' => FALSE,
  344. 'text_processing' => 0,
  345. 'user_register_form' => FALSE,
  346. ),
  347. 'widget' => array(
  348. 'active' => 1,
  349. 'module' => 'text',
  350. 'settings' => array(
  351. 'rows' => 10,
  352. ),
  353. 'type' => 'text_textarea',
  354. 'weight' => 5,
  355. ),
  356. );
  357. // Exported field_instance: 'node-breve-field_onthologie'.
  358. $field_instances['node-breve-field_onthologie'] = array(
  359. 'bundle' => 'breve',
  360. 'default_value' => NULL,
  361. 'deleted' => 0,
  362. 'description' => '',
  363. 'display' => array(
  364. 'bookmark' => array(
  365. 'label' => 'above',
  366. 'settings' => array(),
  367. 'type' => 'hidden',
  368. 'weight' => 4,
  369. ),
  370. 'cardbig' => array(
  371. 'label' => 'above',
  372. 'settings' => array(),
  373. 'type' => 'hidden',
  374. 'weight' => 5,
  375. ),
  376. 'cardfull' => array(
  377. 'label' => 'above',
  378. 'settings' => array(),
  379. 'type' => 'hidden',
  380. 'weight' => 4,
  381. ),
  382. 'cardmedium' => array(
  383. 'label' => 'above',
  384. 'settings' => array(),
  385. 'type' => 'hidden',
  386. 'weight' => 5,
  387. ),
  388. 'cardsmall' => array(
  389. 'label' => 'above',
  390. 'settings' => array(),
  391. 'type' => 'hidden',
  392. 'weight' => 4,
  393. ),
  394. 'default' => array(
  395. 'label' => 'above',
  396. 'settings' => array(),
  397. 'type' => 'hidden',
  398. 'weight' => 4,
  399. ),
  400. 'homeblock' => array(
  401. 'label' => 'above',
  402. 'settings' => array(),
  403. 'type' => 'hidden',
  404. 'weight' => 2,
  405. ),
  406. 'print' => array(
  407. 'label' => 'above',
  408. 'settings' => array(),
  409. 'type' => 'hidden',
  410. 'weight' => 0,
  411. ),
  412. 'teaser' => array(
  413. 'label' => 'above',
  414. 'settings' => array(),
  415. 'type' => 'hidden',
  416. 'weight' => 7,
  417. ),
  418. ),
  419. 'entity_type' => 'node',
  420. 'field_name' => 'field_onthologie',
  421. 'label' => 'Onthologie',
  422. 'required' => 0,
  423. 'settings' => array(
  424. 'entity_translation_sync' => FALSE,
  425. 'user_register_form' => FALSE,
  426. ),
  427. 'widget' => array(
  428. 'active' => 1,
  429. 'module' => 'term_reference_tree',
  430. 'settings' => array(
  431. 'cascading_selection' => 0,
  432. 'filter_view' => '',
  433. 'leaves_only' => 0,
  434. 'max_depth' => '',
  435. 'parent_term_id' => '',
  436. 'select_parents' => 1,
  437. 'start_minimized' => 1,
  438. 'starting_depth' => 2,
  439. 'token_display' => '',
  440. 'track_list' => 1,
  441. 'track_list_order' => 1,
  442. ),
  443. 'type' => 'term_reference_tree',
  444. 'weight' => 18,
  445. ),
  446. );
  447. // Exported field_instance: 'node-breve-field_source'.
  448. $field_instances['node-breve-field_source'] = array(
  449. 'bundle' => 'breve',
  450. 'default_value' => NULL,
  451. 'deleted' => 0,
  452. 'description' => '',
  453. 'display' => array(
  454. 'bookmark' => array(
  455. 'label' => 'above',
  456. 'settings' => array(),
  457. 'type' => 'hidden',
  458. 'weight' => 6,
  459. ),
  460. 'cardbig' => array(
  461. 'label' => 'above',
  462. 'module' => 'link',
  463. 'settings' => array(),
  464. 'type' => 'link_default',
  465. 'weight' => 8,
  466. ),
  467. 'cardfull' => array(
  468. 'label' => 'inline',
  469. 'module' => 'link',
  470. 'settings' => array(),
  471. 'type' => 'link_default',
  472. 'weight' => 13,
  473. ),
  474. 'cardmedium' => array(
  475. 'label' => 'above',
  476. 'module' => 'link',
  477. 'settings' => array(),
  478. 'type' => 'link_default',
  479. 'weight' => 7,
  480. ),
  481. 'cardsmall' => array(
  482. 'label' => 'above',
  483. 'settings' => array(),
  484. 'type' => 'hidden',
  485. 'weight' => 7,
  486. ),
  487. 'default' => array(
  488. 'label' => 'above',
  489. 'settings' => array(),
  490. 'type' => 'hidden',
  491. 'weight' => 7,
  492. ),
  493. 'homeblock' => array(
  494. 'label' => 'above',
  495. 'settings' => array(),
  496. 'type' => 'hidden',
  497. 'weight' => 8,
  498. ),
  499. 'print' => array(
  500. 'label' => 'above',
  501. 'settings' => array(),
  502. 'type' => 'hidden',
  503. 'weight' => 0,
  504. ),
  505. 'teaser' => array(
  506. 'label' => 'above',
  507. 'module' => 'link',
  508. 'settings' => array(),
  509. 'type' => 'link_default',
  510. 'weight' => 4,
  511. ),
  512. ),
  513. 'entity_type' => 'node',
  514. 'field_name' => 'field_source',
  515. 'label' => 'source',
  516. 'required' => 0,
  517. 'settings' => array(
  518. 'absolute_url' => 1,
  519. 'attributes' => array(
  520. 'class' => '',
  521. 'configurable_title' => 0,
  522. 'rel' => '',
  523. 'target' => '_blank',
  524. 'title' => '',
  525. ),
  526. 'display' => array(
  527. 'url_cutoff' => 80,
  528. ),
  529. 'enable_tokens' => 1,
  530. 'entity_translation_sync' => FALSE,
  531. 'rel_remove' => 'default',
  532. 'title' => 'none',
  533. 'title_label_use_field_label' => FALSE,
  534. 'title_maxlength' => 128,
  535. 'title_value' => '',
  536. 'url' => 0,
  537. 'user_register_form' => FALSE,
  538. 'validate_url' => 1,
  539. ),
  540. 'widget' => array(
  541. 'active' => 0,
  542. 'module' => 'link',
  543. 'settings' => array(),
  544. 'type' => 'link_field',
  545. 'weight' => -2,
  546. ),
  547. );
  548. // Exported field_instance: 'node-breve-field_tags_libres'.
  549. $field_instances['node-breve-field_tags_libres'] = array(
  550. 'bundle' => 'breve',
  551. 'default_value' => NULL,
  552. 'deleted' => 0,
  553. 'description' => '',
  554. 'display' => array(
  555. 'bookmark' => array(
  556. 'label' => 'above',
  557. 'settings' => array(),
  558. 'type' => 'hidden',
  559. 'weight' => 5,
  560. ),
  561. 'cardbig' => array(
  562. 'label' => 'above',
  563. 'settings' => array(),
  564. 'type' => 'hidden',
  565. 'weight' => 4,
  566. ),
  567. 'cardfull' => array(
  568. 'label' => 'above',
  569. 'settings' => array(),
  570. 'type' => 'hidden',
  571. 'weight' => 5,
  572. ),
  573. 'cardmedium' => array(
  574. 'label' => 'above',
  575. 'settings' => array(),
  576. 'type' => 'hidden',
  577. 'weight' => 6,
  578. ),
  579. 'cardsmall' => array(
  580. 'label' => 'above',
  581. 'settings' => array(),
  582. 'type' => 'hidden',
  583. 'weight' => 5,
  584. ),
  585. 'default' => array(
  586. 'label' => 'above',
  587. 'settings' => array(),
  588. 'type' => 'hidden',
  589. 'weight' => 5,
  590. ),
  591. 'homeblock' => array(
  592. 'label' => 'above',
  593. 'settings' => array(),
  594. 'type' => 'hidden',
  595. 'weight' => 3,
  596. ),
  597. 'print' => array(
  598. 'label' => 'above',
  599. 'settings' => array(),
  600. 'type' => 'hidden',
  601. 'weight' => 0,
  602. ),
  603. 'teaser' => array(
  604. 'label' => 'above',
  605. 'settings' => array(),
  606. 'type' => 'hidden',
  607. 'weight' => 8,
  608. ),
  609. ),
  610. 'entity_type' => 'node',
  611. 'field_name' => 'field_tags_libres',
  612. 'label' => 'Tags libres',
  613. 'required' => 0,
  614. 'settings' => array(
  615. 'entity_translation_sync' => FALSE,
  616. 'user_register_form' => FALSE,
  617. ),
  618. 'widget' => array(
  619. 'active' => 1,
  620. 'module' => 'autocomplete_deluxe',
  621. 'settings' => array(
  622. 'autocomplete_deluxe_path' => 'autocomplete_deluxe/taxonomy',
  623. 'content_taxonomy_autocomplete_new_terms' => 'deny',
  624. 'delimiter' => '',
  625. 'limit' => 10,
  626. 'min_length' => 0,
  627. 'not_found_message' => 'The term \'@term\' will be added.',
  628. 'size' => 60,
  629. 'use_synonyms' => 0,
  630. ),
  631. 'type' => 'autocomplete_deluxe_taxonomy',
  632. 'weight' => 20,
  633. ),
  634. );
  635. // Exported field_instance: 'node-breve-field_video_filter'.
  636. $field_instances['node-breve-field_video_filter'] = array(
  637. 'bundle' => 'breve',
  638. 'default_value' => array(
  639. 0 => array(
  640. 'url' => '',
  641. 'height' => 400,
  642. 'width' => 300,
  643. 'autoplay' => 0,
  644. ),
  645. ),
  646. 'deleted' => 0,
  647. 'description' => '',
  648. 'display' => array(
  649. 'bookmark' => array(
  650. 'label' => 'above',
  651. 'settings' => array(),
  652. 'type' => 'hidden',
  653. 'weight' => 3,
  654. ),
  655. 'cardbig' => array(
  656. 'label' => 'hidden',
  657. 'settings' => array(),
  658. 'type' => 'hidden',
  659. 'weight' => 9,
  660. ),
  661. 'cardfull' => array(
  662. 'label' => 'above',
  663. 'settings' => array(),
  664. 'type' => 'hidden',
  665. 'weight' => 3,
  666. ),
  667. 'cardmedium' => array(
  668. 'label' => 'hidden',
  669. 'settings' => array(),
  670. 'type' => 'hidden',
  671. 'weight' => 6,
  672. ),
  673. 'cardsmall' => array(
  674. 'label' => 'above',
  675. 'settings' => array(),
  676. 'type' => 'hidden',
  677. 'weight' => 3,
  678. ),
  679. 'default' => array(
  680. 'label' => 'above',
  681. 'settings' => array(),
  682. 'type' => 'hidden',
  683. 'weight' => 3,
  684. ),
  685. 'homeblock' => array(
  686. 'label' => 'above',
  687. 'settings' => array(),
  688. 'type' => 'hidden',
  689. 'weight' => 6,
  690. ),
  691. 'print' => array(
  692. 'label' => 'above',
  693. 'settings' => array(),
  694. 'type' => 'hidden',
  695. 'weight' => 0,
  696. ),
  697. 'teaser' => array(
  698. 'label' => 'hidden',
  699. 'module' => 'video_filter_field',
  700. 'settings' => array(),
  701. 'type' => 'video_filter_field_default',
  702. 'weight' => 3,
  703. ),
  704. ),
  705. 'entity_type' => 'node',
  706. 'field_name' => 'field_video_filter',
  707. 'label' => 'video',
  708. 'required' => 0,
  709. 'settings' => array(
  710. 'autoplay' => 0,
  711. 'entity_translation_sync' => FALSE,
  712. 'max_height' => 400,
  713. 'max_width' => 400,
  714. 'user_register_form' => FALSE,
  715. ),
  716. 'widget' => array(
  717. 'active' => 0,
  718. 'module' => 'video_filter_field',
  719. 'settings' => array(),
  720. 'type' => 'video_filter',
  721. 'weight' => 16,
  722. ),
  723. );
  724. // Exported field_instance: 'node-breve-field_visuel'.
  725. $field_instances['node-breve-field_visuel'] = array(
  726. 'bundle' => 'breve',
  727. 'deleted' => 0,
  728. 'description' => '',
  729. 'display' => array(
  730. 'bookmark' => array(
  731. 'label' => 'hidden',
  732. 'module' => 'image',
  733. 'settings' => array(
  734. 'image_link' => '',
  735. 'image_style' => 'card-bookmark',
  736. ),
  737. 'type' => 'image',
  738. 'weight' => 2,
  739. ),
  740. 'cardbig' => array(
  741. 'label' => 'hidden',
  742. 'module' => 'image',
  743. 'settings' => array(
  744. 'image_link' => '',
  745. 'image_style' => 'card-big',
  746. ),
  747. 'type' => 'image',
  748. 'weight' => 14,
  749. ),
  750. 'cardfull' => array(
  751. 'label' => 'hidden',
  752. 'module' => 'image',
  753. 'settings' => array(
  754. 'image_link' => '',
  755. 'image_style' => 'card-full',
  756. ),
  757. 'type' => 'image',
  758. 'weight' => 18,
  759. ),
  760. 'cardmedium' => array(
  761. 'label' => 'hidden',
  762. 'module' => 'image',
  763. 'settings' => array(
  764. 'image_link' => '',
  765. 'image_style' => 'card-medium',
  766. ),
  767. 'type' => 'image',
  768. 'weight' => 14,
  769. ),
  770. 'cardsmall' => array(
  771. 'label' => 'hidden',
  772. 'module' => 'image',
  773. 'settings' => array(
  774. 'image_link' => '',
  775. 'image_style' => 'card-small',
  776. ),
  777. 'type' => 'image',
  778. 'weight' => 1,
  779. ),
  780. 'default' => array(
  781. 'label' => 'above',
  782. 'module' => 'image',
  783. 'settings' => array(
  784. 'image_link' => '',
  785. 'image_style' => '',
  786. ),
  787. 'type' => 'image',
  788. 'weight' => 2,
  789. ),
  790. 'homeblock' => array(
  791. 'label' => 'above',
  792. 'settings' => array(),
  793. 'type' => 'hidden',
  794. 'weight' => 11,
  795. ),
  796. 'print' => array(
  797. 'label' => 'above',
  798. 'settings' => array(),
  799. 'type' => 'hidden',
  800. 'weight' => 0,
  801. ),
  802. 'teaser' => array(
  803. 'label' => 'hidden',
  804. 'module' => 'image',
  805. 'settings' => array(
  806. 'image_link' => 'content',
  807. 'image_style' => 'large',
  808. ),
  809. 'type' => 'image',
  810. 'weight' => 1,
  811. ),
  812. ),
  813. 'entity_type' => 'node',
  814. 'field_name' => 'field_visuel',
  815. 'label' => 'Image',
  816. 'required' => 0,
  817. 'settings' => array(
  818. 'alt_field' => 0,
  819. 'default_image' => 0,
  820. 'entity_translation_sync' => 0,
  821. 'file_directory' => 'breves',
  822. 'file_extensions' => 'png gif jpg jpeg',
  823. 'max_filesize' => '',
  824. 'max_resolution' => '',
  825. 'min_resolution' => '',
  826. 'title_field' => 1,
  827. 'user_register_form' => FALSE,
  828. ),
  829. 'widget' => array(
  830. 'active' => 1,
  831. 'module' => 'image',
  832. 'settings' => array(
  833. 'preview_image_style' => 'medium',
  834. 'progress_indicator' => 'throbber',
  835. ),
  836. 'type' => 'image_image',
  837. 'weight' => 15,
  838. ),
  839. );
  840. // Exported field_instance: 'node-breve-field_workflow_state'.
  841. $field_instances['node-breve-field_workflow_state'] = array(
  842. 'bundle' => 'breve',
  843. 'default_value' => NULL,
  844. 'deleted' => 0,
  845. 'description' => '',
  846. 'display' => array(
  847. 'bookmark' => array(
  848. 'label' => 'above',
  849. 'settings' => array(),
  850. 'type' => 'hidden',
  851. 'weight' => 0,
  852. ),
  853. 'cardbig' => array(
  854. 'label' => 'above',
  855. 'settings' => array(),
  856. 'type' => 'hidden',
  857. 'weight' => 0,
  858. ),
  859. 'cardfull' => array(
  860. 'label' => 'above',
  861. 'settings' => array(),
  862. 'type' => 'hidden',
  863. 'weight' => 0,
  864. ),
  865. 'cardmedium' => array(
  866. 'label' => 'above',
  867. 'settings' => array(),
  868. 'type' => 'hidden',
  869. 'weight' => 0,
  870. ),
  871. 'cardsmall' => array(
  872. 'label' => 'above',
  873. 'settings' => array(),
  874. 'type' => 'hidden',
  875. 'weight' => 0,
  876. ),
  877. 'default' => array(
  878. 'label' => 'above',
  879. 'module' => 'computed_field',
  880. 'settings' => array(),
  881. 'type' => 'computed_field_plain',
  882. 'weight' => 11,
  883. ),
  884. 'homeblock' => array(
  885. 'label' => 'above',
  886. 'settings' => array(),
  887. 'type' => 'hidden',
  888. 'weight' => 5,
  889. ),
  890. 'print' => array(
  891. 'label' => 'above',
  892. 'settings' => array(),
  893. 'type' => 'hidden',
  894. 'weight' => 0,
  895. ),
  896. 'teaser' => array(
  897. 'label' => 'above',
  898. 'settings' => array(),
  899. 'type' => 'hidden',
  900. 'weight' => 5,
  901. ),
  902. ),
  903. 'entity_type' => 'node',
  904. 'field_name' => 'field_workflow_state',
  905. 'label' => 'Workflow State',
  906. 'required' => 0,
  907. 'settings' => array(
  908. 'entity_translation_sync' => FALSE,
  909. 'user_register_form' => FALSE,
  910. ),
  911. 'widget' => array(
  912. 'active' => 0,
  913. 'module' => 'field_extrawidgets',
  914. 'settings' => array(
  915. 'display_empty' => 0,
  916. 'formatter' => '',
  917. 'formatter_settings' => array(),
  918. ),
  919. 'type' => 'field_extrawidgets_read_only',
  920. 'weight' => 8,
  921. ),
  922. );
  923. // Exported field_instance: 'node-breve-title_field'.
  924. $field_instances['node-breve-title_field'] = array(
  925. 'bundle' => 'breve',
  926. 'default_value' => NULL,
  927. 'deleted' => 0,
  928. 'description' => '',
  929. 'display' => array(
  930. 'bookmark' => array(
  931. 'label' => 'hidden',
  932. 'module' => 'text',
  933. 'settings' => array(),
  934. 'type' => 'text_plain',
  935. 'weight' => 4,
  936. ),
  937. 'cardbig' => array(
  938. 'label' => 'hidden',
  939. 'module' => 'text',
  940. 'settings' => array(),
  941. 'type' => 'text_default',
  942. 'weight' => 4,
  943. ),
  944. 'cardfull' => array(
  945. 'label' => 'hidden',
  946. 'module' => 'text',
  947. 'settings' => array(),
  948. 'type' => 'text_default',
  949. 'weight' => 12,
  950. ),
  951. 'cardmedium' => array(
  952. 'label' => 'hidden',
  953. 'module' => 'text',
  954. 'settings' => array(),
  955. 'type' => 'text_default',
  956. 'weight' => 2,
  957. ),
  958. 'cardsmall' => array(
  959. 'label' => 'hidden',
  960. 'module' => 'text',
  961. 'settings' => array(),
  962. 'type' => 'text_plain',
  963. 'weight' => 1,
  964. ),
  965. 'default' => array(
  966. 'label' => 'above',
  967. 'module' => 'text',
  968. 'settings' => array(),
  969. 'type' => 'text_plain',
  970. 'weight' => 0,
  971. ),
  972. 'homeblock' => array(
  973. 'label' => 'above',
  974. 'settings' => array(),
  975. 'type' => 'hidden',
  976. 'weight' => 7,
  977. ),
  978. 'print' => array(
  979. 'label' => 'above',
  980. 'settings' => array(),
  981. 'type' => 'hidden',
  982. 'weight' => 0,
  983. ),
  984. 'teaser' => array(
  985. 'label' => 'hidden',
  986. 'module' => 'text',
  987. 'settings' => array(),
  988. 'type' => 'text_default',
  989. 'weight' => 0,
  990. ),
  991. ),
  992. 'entity_type' => 'node',
  993. 'field_name' => 'title_field',
  994. 'label' => 'Titre',
  995. 'required' => 1,
  996. 'settings' => array(
  997. 'entity_translation_sync' => FALSE,
  998. 'hide_label' => array(
  999. 'entity' => 0,
  1000. 'page' => 0,
  1001. ),
  1002. 'text_processing' => 0,
  1003. 'user_register_form' => FALSE,
  1004. ),
  1005. 'widget' => array(
  1006. 'active' => 1,
  1007. 'module' => 'text',
  1008. 'settings' => array(
  1009. 'size' => 60,
  1010. ),
  1011. 'type' => 'text_textfield',
  1012. 'weight' => -5,
  1013. ),
  1014. );
  1015. // Exported field_instance: 'node-company-body'.
  1016. $field_instances['node-company-body'] = array(
  1017. 'bundle' => 'company',
  1018. 'default_value' => NULL,
  1019. 'deleted' => 0,
  1020. 'description' => '',
  1021. 'display' => array(
  1022. 'bookmark' => array(
  1023. 'label' => 'above',
  1024. 'settings' => array(),
  1025. 'type' => 'hidden',
  1026. 'weight' => 0,
  1027. ),
  1028. 'cardbig' => array(
  1029. 'label' => 'hidden',
  1030. 'module' => 'text',
  1031. 'settings' => array(),
  1032. 'type' => 'text_default',
  1033. 'weight' => 1,
  1034. ),
  1035. 'cardfull' => array(
  1036. 'label' => 'hidden',
  1037. 'settings' => array(),
  1038. 'type' => 'hidden',
  1039. 'weight' => 8,
  1040. ),
  1041. 'cardmedium' => array(
  1042. 'label' => 'hidden',
  1043. 'module' => 'text',
  1044. 'settings' => array(),
  1045. 'type' => 'text_plain',
  1046. 'weight' => 1,
  1047. ),
  1048. 'cardsmall' => array(
  1049. 'label' => 'above',
  1050. 'settings' => array(),
  1051. 'type' => 'hidden',
  1052. 'weight' => 0,
  1053. ),
  1054. 'default' => array(
  1055. 'label' => 'hidden',
  1056. 'module' => 'text',
  1057. 'settings' => array(),
  1058. 'type' => 'text_default',
  1059. 'weight' => 1,
  1060. ),
  1061. 'homeblock' => array(
  1062. 'label' => 'above',
  1063. 'settings' => array(),
  1064. 'type' => 'hidden',
  1065. 'weight' => 0,
  1066. ),
  1067. 'print' => array(
  1068. 'label' => 'hidden',
  1069. 'module' => 'text',
  1070. 'settings' => array(),
  1071. 'type' => 'text_plain',
  1072. 'weight' => 1,
  1073. ),
  1074. 'teaser' => array(
  1075. 'label' => 'hidden',
  1076. 'module' => 'text',
  1077. 'settings' => array(
  1078. 'trim_length' => 600,
  1079. ),
  1080. 'type' => 'text_summary_or_trimmed',
  1081. 'weight' => 0,
  1082. ),
  1083. ),
  1084. 'entity_type' => 'node',
  1085. 'field_name' => 'body',
  1086. 'label' => 'Materio speach',
  1087. 'required' => 0,
  1088. 'settings' => array(
  1089. 'display_summary' => 1,
  1090. 'entity_translation_sync' => FALSE,
  1091. 'text_processing' => 1,
  1092. 'user_register_form' => FALSE,
  1093. ),
  1094. 'widget' => array(
  1095. 'active' => 1,
  1096. 'module' => 'text',
  1097. 'settings' => array(
  1098. 'rows' => 20,
  1099. 'summary_rows' => 5,
  1100. ),
  1101. 'type' => 'text_textarea_with_summary',
  1102. 'weight' => 4,
  1103. ),
  1104. );
  1105. // Exported field_instance: 'node-company-field_attachments'.
  1106. $field_instances['node-company-field_attachments'] = array(
  1107. 'bundle' => 'company',
  1108. 'deleted' => 0,
  1109. 'description' => '',
  1110. 'display' => array(
  1111. 'bookmark' => array(
  1112. 'label' => 'above',
  1113. 'settings' => array(),
  1114. 'type' => 'hidden',
  1115. 'weight' => 0,
  1116. ),
  1117. 'cardbig' => array(
  1118. 'label' => 'hidden',
  1119. 'module' => 'file',
  1120. 'settings' => array(),
  1121. 'type' => 'file_default',
  1122. 'weight' => 8,
  1123. ),
  1124. 'cardfull' => array(
  1125. 'label' => 'hidden',
  1126. 'module' => 'file',
  1127. 'settings' => array(),
  1128. 'type' => 'file_default',
  1129. 'weight' => 6,
  1130. ),
  1131. 'cardmedium' => array(
  1132. 'label' => 'hidden',
  1133. 'module' => 'file',
  1134. 'settings' => array(),
  1135. 'type' => 'file_table',
  1136. 'weight' => 8,
  1137. ),
  1138. 'cardsmall' => array(
  1139. 'label' => 'above',
  1140. 'settings' => array(),
  1141. 'type' => 'hidden',
  1142. 'weight' => 0,
  1143. ),
  1144. 'default' => array(
  1145. 'label' => 'above',
  1146. 'settings' => array(),
  1147. 'type' => 'hidden',
  1148. 'weight' => 8,
  1149. ),
  1150. 'homeblock' => array(
  1151. 'label' => 'above',
  1152. 'settings' => array(),
  1153. 'type' => 'hidden',
  1154. 'weight' => 0,
  1155. ),
  1156. 'print' => array(
  1157. 'label' => 'above',
  1158. 'settings' => array(),
  1159. 'type' => 'hidden',
  1160. 'weight' => 7,
  1161. ),
  1162. 'teaser' => array(
  1163. 'label' => 'above',
  1164. 'settings' => array(),
  1165. 'type' => 'hidden',
  1166. 'weight' => 0,
  1167. ),
  1168. ),
  1169. 'entity_type' => 'node',
  1170. 'field_name' => 'field_attachments',
  1171. 'label' => 'Fichiers joints',
  1172. 'required' => 0,
  1173. 'settings' => array(
  1174. 'description_field' => 0,
  1175. 'entity_translation_sync' => FALSE,
  1176. 'file_directory' => '',
  1177. 'file_extensions' => 'txt pdf doc docx',
  1178. 'max_filesize' => '',
  1179. 'user_register_form' => FALSE,
  1180. ),
  1181. 'widget' => array(
  1182. 'active' => 1,
  1183. 'module' => 'file',
  1184. 'settings' => array(
  1185. 'progress_indicator' => 'throbber',
  1186. ),
  1187. 'type' => 'file_generic',
  1188. 'weight' => 13,
  1189. ),
  1190. );
  1191. // Exported field_instance: 'node-company-field_department'.
  1192. $field_instances['node-company-field_department'] = array(
  1193. 'bundle' => 'company',
  1194. 'default_value' => NULL,
  1195. 'deleted' => 0,
  1196. 'description' => '',
  1197. 'display' => array(
  1198. 'bookmark' => array(
  1199. 'label' => 'above',
  1200. 'settings' => array(),
  1201. 'type' => 'hidden',
  1202. 'weight' => 0,
  1203. ),
  1204. 'cardbig' => array(
  1205. 'label' => 'hidden',
  1206. 'module' => 'text',
  1207. 'settings' => array(),
  1208. 'type' => 'text_default',
  1209. 'weight' => 3,
  1210. ),
  1211. 'cardfull' => array(
  1212. 'label' => 'hidden',
  1213. 'module' => 'text',
  1214. 'settings' => array(),
  1215. 'type' => 'text_default',
  1216. 'weight' => 1,
  1217. ),
  1218. 'cardmedium' => array(
  1219. 'label' => 'hidden',
  1220. 'module' => 'text',
  1221. 'settings' => array(),
  1222. 'type' => 'text_default',
  1223. 'weight' => 3,
  1224. ),
  1225. 'cardsmall' => array(
  1226. 'label' => 'above',
  1227. 'settings' => array(),
  1228. 'type' => 'hidden',
  1229. 'weight' => 0,
  1230. ),
  1231. 'default' => array(
  1232. 'label' => 'inline',
  1233. 'settings' => array(),
  1234. 'type' => 'hidden',
  1235. 'weight' => 12,
  1236. ),
  1237. 'homeblock' => array(
  1238. 'label' => 'above',
  1239. 'settings' => array(),
  1240. 'type' => 'hidden',
  1241. 'weight' => 0,
  1242. ),
  1243. 'print' => array(
  1244. 'label' => 'above',
  1245. 'settings' => array(),
  1246. 'type' => 'hidden',
  1247. 'weight' => 8,
  1248. ),
  1249. 'teaser' => array(
  1250. 'label' => 'above',
  1251. 'settings' => array(),
  1252. 'type' => 'hidden',
  1253. 'weight' => 0,
  1254. ),
  1255. ),
  1256. 'entity_type' => 'node',
  1257. 'field_name' => 'field_department',
  1258. 'label' => 'Department',
  1259. 'required' => 0,
  1260. 'settings' => array(
  1261. 'entity_translation_sync' => FALSE,
  1262. 'text_processing' => 0,
  1263. 'user_register_form' => FALSE,
  1264. ),
  1265. 'widget' => array(
  1266. 'active' => 1,
  1267. 'module' => 'text',
  1268. 'settings' => array(
  1269. 'size' => 60,
  1270. ),
  1271. 'type' => 'text_textfield',
  1272. 'weight' => 2,
  1273. ),
  1274. );
  1275. // Exported field_instance: 'node-company-field_infos_from_company'.
  1276. $field_instances['node-company-field_infos_from_company'] = array(
  1277. 'bundle' => 'company',
  1278. 'default_value' => NULL,
  1279. 'deleted' => 0,
  1280. 'description' => '',
  1281. 'display' => array(
  1282. 'bookmark' => array(
  1283. 'label' => 'above',
  1284. 'settings' => array(),
  1285. 'type' => 'hidden',
  1286. 'weight' => 0,
  1287. ),
  1288. 'cardbig' => array(
  1289. 'label' => 'hidden',
  1290. 'module' => 'text',
  1291. 'settings' => array(),
  1292. 'type' => 'text_default',
  1293. 'weight' => 2,
  1294. ),
  1295. 'cardfull' => array(
  1296. 'label' => 'hidden',
  1297. 'settings' => array(),
  1298. 'type' => 'hidden',
  1299. 'weight' => 7,
  1300. ),
  1301. 'cardmedium' => array(
  1302. 'label' => 'hidden',
  1303. 'module' => 'text',
  1304. 'settings' => array(),
  1305. 'type' => 'text_plain',
  1306. 'weight' => 2,
  1307. ),
  1308. 'cardsmall' => array(
  1309. 'label' => 'above',
  1310. 'settings' => array(),
  1311. 'type' => 'hidden',
  1312. 'weight' => 0,
  1313. ),
  1314. 'default' => array(
  1315. 'label' => 'hidden',
  1316. 'module' => 'text',
  1317. 'settings' => array(),
  1318. 'type' => 'text_default',
  1319. 'weight' => 2,
  1320. ),
  1321. 'homeblock' => array(
  1322. 'label' => 'above',
  1323. 'settings' => array(),
  1324. 'type' => 'hidden',
  1325. 'weight' => 0,
  1326. ),
  1327. 'print' => array(
  1328. 'label' => 'hidden',
  1329. 'module' => 'text',
  1330. 'settings' => array(),
  1331. 'type' => 'text_default',
  1332. 'weight' => 2,
  1333. ),
  1334. 'teaser' => array(
  1335. 'label' => 'above',
  1336. 'settings' => array(),
  1337. 'type' => 'hidden',
  1338. 'weight' => 0,
  1339. ),
  1340. ),
  1341. 'entity_type' => 'node',
  1342. 'field_name' => 'field_infos_from_company',
  1343. 'label' => 'Infos from company',
  1344. 'required' => 0,
  1345. 'settings' => array(
  1346. 'entity_translation_sync' => FALSE,
  1347. 'text_processing' => 1,
  1348. 'user_register_form' => FALSE,
  1349. ),
  1350. 'widget' => array(
  1351. 'active' => 1,
  1352. 'module' => 'text',
  1353. 'settings' => array(
  1354. 'rows' => 5,
  1355. ),
  1356. 'type' => 'text_textarea',
  1357. 'weight' => 6,
  1358. ),
  1359. );
  1360. // Exported field_instance: 'node-company-field_memo'.
  1361. $field_instances['node-company-field_memo'] = array(
  1362. 'bundle' => 'company',
  1363. 'default_value' => NULL,
  1364. 'deleted' => 0,
  1365. 'description' => '',
  1366. 'display' => array(
  1367. 'bookmark' => array(
  1368. 'label' => 'above',
  1369. 'settings' => array(),
  1370. 'type' => 'hidden',
  1371. 'weight' => 0,
  1372. ),
  1373. 'cardbig' => array(
  1374. 'label' => 'above',
  1375. 'settings' => array(),
  1376. 'type' => 'hidden',
  1377. 'weight' => 11,
  1378. ),
  1379. 'cardfull' => array(
  1380. 'label' => 'hidden',
  1381. 'settings' => array(),
  1382. 'type' => 'hidden',
  1383. 'weight' => 9,
  1384. ),
  1385. 'cardmedium' => array(
  1386. 'label' => 'above',
  1387. 'settings' => array(),
  1388. 'type' => 'hidden',
  1389. 'weight' => 11,
  1390. ),
  1391. 'cardsmall' => array(
  1392. 'label' => 'above',
  1393. 'settings' => array(),
  1394. 'type' => 'hidden',
  1395. 'weight' => 0,
  1396. ),
  1397. 'default' => array(
  1398. 'label' => 'above',
  1399. 'settings' => array(),
  1400. 'type' => 'hidden',
  1401. 'weight' => 10,
  1402. ),
  1403. 'homeblock' => array(
  1404. 'label' => 'above',
  1405. 'settings' => array(),
  1406. 'type' => 'hidden',
  1407. 'weight' => 0,
  1408. ),
  1409. 'print' => array(
  1410. 'label' => 'above',
  1411. 'settings' => array(),
  1412. 'type' => 'hidden',
  1413. 'weight' => 9,
  1414. ),
  1415. 'teaser' => array(
  1416. 'label' => 'above',
  1417. 'settings' => array(),
  1418. 'type' => 'hidden',
  1419. 'weight' => 0,
  1420. ),
  1421. ),
  1422. 'entity_type' => 'node',
  1423. 'field_name' => 'field_memo',
  1424. 'label' => 'Mémo',
  1425. 'required' => 0,
  1426. 'settings' => array(
  1427. 'entity_translation_sync' => FALSE,
  1428. 'text_processing' => 0,
  1429. 'user_register_form' => FALSE,
  1430. ),
  1431. 'widget' => array(
  1432. 'active' => 1,
  1433. 'module' => 'text',
  1434. 'settings' => array(
  1435. 'rows' => 10,
  1436. ),
  1437. 'type' => 'text_textarea',
  1438. 'weight' => 10,
  1439. ),
  1440. );
  1441. // Exported field_instance: 'node-company-field_note'.
  1442. $field_instances['node-company-field_note'] = array(
  1443. 'bundle' => 'company',
  1444. 'default_value' => array(
  1445. 0 => array(
  1446. 'value' => 2,
  1447. ),
  1448. ),
  1449. 'deleted' => 0,
  1450. 'description' => '',
  1451. 'display' => array(
  1452. 'bookmark' => array(
  1453. 'label' => 'above',
  1454. 'settings' => array(),
  1455. 'type' => 'hidden',
  1456. 'weight' => 0,
  1457. ),
  1458. 'cardbig' => array(
  1459. 'label' => 'above',
  1460. 'settings' => array(),
  1461. 'type' => 'hidden',
  1462. 'weight' => 10,
  1463. ),
  1464. 'cardfull' => array(
  1465. 'label' => 'hidden',
  1466. 'settings' => array(),
  1467. 'type' => 'hidden',
  1468. 'weight' => 10,
  1469. ),
  1470. 'cardmedium' => array(
  1471. 'label' => 'above',
  1472. 'settings' => array(),
  1473. 'type' => 'hidden',
  1474. 'weight' => 10,
  1475. ),
  1476. 'cardsmall' => array(
  1477. 'label' => 'above',
  1478. 'settings' => array(),
  1479. 'type' => 'hidden',
  1480. 'weight' => 0,
  1481. ),
  1482. 'default' => array(
  1483. 'label' => 'inline',
  1484. 'settings' => array(),
  1485. 'type' => 'hidden',
  1486. 'weight' => 9,
  1487. ),
  1488. 'homeblock' => array(
  1489. 'label' => 'above',
  1490. 'settings' => array(),
  1491. 'type' => 'hidden',
  1492. 'weight' => 0,
  1493. ),
  1494. 'print' => array(
  1495. 'label' => 'above',
  1496. 'settings' => array(),
  1497. 'type' => 'hidden',
  1498. 'weight' => 10,
  1499. ),
  1500. 'teaser' => array(
  1501. 'label' => 'above',
  1502. 'settings' => array(),
  1503. 'type' => 'hidden',
  1504. 'weight' => 0,
  1505. ),
  1506. ),
  1507. 'entity_type' => 'node',
  1508. 'field_name' => 'field_note',
  1509. 'label' => 'Note',
  1510. 'required' => 1,
  1511. 'settings' => array(
  1512. 'entity_translation_sync' => FALSE,
  1513. 'user_register_form' => FALSE,
  1514. ),
  1515. 'widget' => array(
  1516. 'active' => 1,
  1517. 'module' => 'options',
  1518. 'settings' => array(
  1519. 'content_taxonomy_opt_groups' => FALSE,
  1520. ),
  1521. 'type' => 'options_select',
  1522. 'weight' => 9,
  1523. ),
  1524. );
  1525. // Exported field_instance: 'node-company-field_public_address'.
  1526. $field_instances['node-company-field_public_address'] = array(
  1527. 'bundle' => 'company',
  1528. 'default_value' => NULL,
  1529. 'deleted' => 0,
  1530. 'description' => '',
  1531. 'display' => array(
  1532. 'bookmark' => array(
  1533. 'label' => 'above',
  1534. 'settings' => array(),
  1535. 'type' => 'hidden',
  1536. 'weight' => 0,
  1537. ),
  1538. 'cardbig' => array(
  1539. 'label' => 'hidden',
  1540. 'module' => 'addressfield',
  1541. 'settings' => array(
  1542. 'format_handlers' => array(
  1543. 0 => 'address',
  1544. ),
  1545. 'use_widget_handlers' => 1,
  1546. ),
  1547. 'type' => 'addressfield_default',
  1548. 'weight' => 7,
  1549. ),
  1550. 'cardfull' => array(
  1551. 'label' => 'hidden',
  1552. 'module' => 'addressfield',
  1553. 'settings' => array(
  1554. 'format_handlers' => array(
  1555. 0 => 'address',
  1556. ),
  1557. 'use_widget_handlers' => 1,
  1558. ),
  1559. 'type' => 'addressfield_default',
  1560. 'weight' => 5,
  1561. ),
  1562. 'cardmedium' => array(
  1563. 'label' => 'hidden',
  1564. 'module' => 'addressfield',
  1565. 'settings' => array(
  1566. 'format_handlers' => array(
  1567. 'address' => 'address',
  1568. ),
  1569. 'use_widget_handlers' => 1,
  1570. ),
  1571. 'type' => 'addressfield_default',
  1572. 'weight' => 7,
  1573. ),
  1574. 'cardsmall' => array(
  1575. 'label' => 'above',
  1576. 'settings' => array(),
  1577. 'type' => 'hidden',
  1578. 'weight' => 0,
  1579. ),
  1580. 'default' => array(
  1581. 'label' => 'above',
  1582. 'module' => 'addressfield',
  1583. 'settings' => array(
  1584. 'format_handlers' => array(
  1585. 0 => 'address',
  1586. ),
  1587. 'use_widget_handlers' => 1,
  1588. ),
  1589. 'type' => 'addressfield_default',
  1590. 'weight' => 6,
  1591. ),
  1592. 'homeblock' => array(
  1593. 'label' => 'above',
  1594. 'settings' => array(),
  1595. 'type' => 'hidden',
  1596. 'weight' => 0,
  1597. ),
  1598. 'print' => array(
  1599. 'label' => 'hidden',
  1600. 'module' => 'addressfield',
  1601. 'settings' => array(
  1602. 'format_handlers' => array(
  1603. 0 => 'address',
  1604. ),
  1605. 'use_widget_handlers' => 1,
  1606. ),
  1607. 'type' => 'addressfield_default',
  1608. 'weight' => 6,
  1609. ),
  1610. 'teaser' => array(
  1611. 'label' => 'above',
  1612. 'settings' => array(),
  1613. 'type' => 'hidden',
  1614. 'weight' => 0,
  1615. ),
  1616. ),
  1617. 'entity_type' => 'node',
  1618. 'field_name' => 'field_public_address',
  1619. 'label' => 'Adresse',
  1620. 'required' => 0,
  1621. 'settings' => array(
  1622. 'entity_translation_sync' => FALSE,
  1623. 'user_register_form' => FALSE,
  1624. ),
  1625. 'widget' => array(
  1626. 'active' => 1,
  1627. 'module' => 'addressfield',
  1628. 'settings' => array(
  1629. 'available_countries' => array(),
  1630. 'default_country' => 'FR',
  1631. 'format_handlers' => array(
  1632. 'address' => 'address',
  1633. 'address-optional' => 'address-optional',
  1634. 'address-hide-postal-code' => 0,
  1635. 'address-hide-street' => 0,
  1636. 'address-hide-country' => 0,
  1637. 'organisation' => 0,
  1638. 'name-full' => 0,
  1639. 'name-oneline' => 0,
  1640. ),
  1641. ),
  1642. 'type' => 'addressfield_standard',
  1643. 'weight' => 7,
  1644. ),
  1645. );
  1646. // Exported field_instance: 'node-company-field_public_email'.
  1647. $field_instances['node-company-field_public_email'] = array(
  1648. 'bundle' => 'company',
  1649. 'default_value' => NULL,
  1650. 'deleted' => 0,
  1651. 'description' => '',
  1652. 'display' => array(
  1653. 'bookmark' => array(
  1654. 'label' => 'above',
  1655. 'settings' => array(),
  1656. 'type' => 'hidden',
  1657. 'weight' => 0,
  1658. ),
  1659. 'cardbig' => array(
  1660. 'label' => 'hidden',
  1661. 'module' => 'email',
  1662. 'settings' => array(),
  1663. 'type' => 'email_default',
  1664. 'weight' => 5,
  1665. ),
  1666. 'cardfull' => array(
  1667. 'label' => 'hidden',
  1668. 'module' => 'email',
  1669. 'settings' => array(),
  1670. 'type' => 'email_default',
  1671. 'weight' => 3,
  1672. ),
  1673. 'cardmedium' => array(
  1674. 'label' => 'hidden',
  1675. 'module' => 'email',
  1676. 'settings' => array(),
  1677. 'type' => 'email_default',
  1678. 'weight' => 5,
  1679. ),
  1680. 'cardsmall' => array(
  1681. 'label' => 'above',
  1682. 'settings' => array(),
  1683. 'type' => 'hidden',
  1684. 'weight' => 0,
  1685. ),
  1686. 'default' => array(
  1687. 'label' => 'above',
  1688. 'module' => 'email',
  1689. 'settings' => array(),
  1690. 'type' => 'email_default',
  1691. 'weight' => 4,
  1692. ),
  1693. 'homeblock' => array(
  1694. 'label' => 'above',
  1695. 'settings' => array(),
  1696. 'type' => 'hidden',
  1697. 'weight' => 0,
  1698. ),
  1699. 'print' => array(
  1700. 'label' => 'hidden',
  1701. 'module' => 'email',
  1702. 'settings' => array(),
  1703. 'type' => 'email_plain',
  1704. 'weight' => 5,
  1705. ),
  1706. 'teaser' => array(
  1707. 'label' => 'above',
  1708. 'settings' => array(),
  1709. 'type' => 'hidden',
  1710. 'weight' => 0,
  1711. ),
  1712. ),
  1713. 'entity_type' => 'node',
  1714. 'field_name' => 'field_public_email',
  1715. 'label' => 'Email',
  1716. 'required' => 0,
  1717. 'settings' => array(
  1718. 'entity_translation_sync' => FALSE,
  1719. 'user_register_form' => FALSE,
  1720. ),
  1721. 'widget' => array(
  1722. 'active' => 1,
  1723. 'module' => 'email',
  1724. 'settings' => array(
  1725. 'size' => 60,
  1726. ),
  1727. 'type' => 'email_textfield',
  1728. 'weight' => 3,
  1729. ),
  1730. );
  1731. // Exported field_instance: 'node-company-field_public_phone'.
  1732. $field_instances['node-company-field_public_phone'] = array(
  1733. 'bundle' => 'company',
  1734. 'deleted' => 0,
  1735. 'description' => '',
  1736. 'display' => array(
  1737. 'bookmark' => array(
  1738. 'label' => 'above',
  1739. 'settings' => array(),
  1740. 'type' => 'hidden',
  1741. 'weight' => 0,
  1742. ),
  1743. 'cardbig' => array(
  1744. 'label' => 'hidden',
  1745. 'module' => 'cck_phone',
  1746. 'settings' => array(),
  1747. 'type' => 'global_phone_number',
  1748. 'weight' => 6,
  1749. ),
  1750. 'cardfull' => array(
  1751. 'label' => 'hidden',
  1752. 'module' => 'cck_phone',
  1753. 'settings' => array(),
  1754. 'type' => 'global_phone_number',
  1755. 'weight' => 4,
  1756. ),
  1757. 'cardmedium' => array(
  1758. 'label' => 'hidden',
  1759. 'module' => 'cck_phone',
  1760. 'settings' => array(),
  1761. 'type' => 'global_phone_number',
  1762. 'weight' => 6,
  1763. ),
  1764. 'cardsmall' => array(
  1765. 'label' => 'above',
  1766. 'settings' => array(),
  1767. 'type' => 'hidden',
  1768. 'weight' => 0,
  1769. ),
  1770. 'default' => array(
  1771. 'label' => 'above',
  1772. 'module' => 'cck_phone',
  1773. 'settings' => array(),
  1774. 'type' => 'global_phone_number',
  1775. 'weight' => 5,
  1776. ),
  1777. 'homeblock' => array(
  1778. 'label' => 'above',
  1779. 'settings' => array(),
  1780. 'type' => 'hidden',
  1781. 'weight' => 0,
  1782. ),
  1783. 'print' => array(
  1784. 'label' => 'hidden',
  1785. 'module' => 'cck_phone',
  1786. 'settings' => array(),
  1787. 'type' => 'global_phone_number',
  1788. 'weight' => 4,
  1789. ),
  1790. 'teaser' => array(
  1791. 'label' => 'above',
  1792. 'settings' => array(),
  1793. 'type' => 'hidden',
  1794. 'weight' => 0,
  1795. ),
  1796. ),
  1797. 'entity_type' => 'node',
  1798. 'field_name' => 'field_public_phone',
  1799. 'label' => 'Phone',
  1800. 'required' => 0,
  1801. 'settings' => array(
  1802. 'all_country_codes' => 1,
  1803. 'country_code_position' => 'after',
  1804. 'country_codes' => array(
  1805. 'country_selection' => array(
  1806. 'ad' => 0,
  1807. 'ae' => 0,
  1808. 'af' => 0,
  1809. 'ag' => 0,
  1810. 'ai' => 0,
  1811. 'al' => 0,
  1812. 'am' => 0,
  1813. 'an' => 0,
  1814. 'ao' => 0,
  1815. 'ar' => 0,
  1816. 'as' => 0,
  1817. 'at' => 0,
  1818. 'au' => 0,
  1819. 'aw' => 0,
  1820. 'az' => 0,
  1821. 'ba' => 0,
  1822. 'bb' => 0,
  1823. 'bd' => 0,
  1824. 'be' => 0,
  1825. 'bf' => 0,
  1826. 'bg' => 0,
  1827. 'bh' => 0,
  1828. 'bi' => 0,
  1829. 'bj' => 0,
  1830. 'bm' => 0,
  1831. 'bn' => 0,
  1832. 'bo' => 0,
  1833. 'br' => 0,
  1834. 'bs' => 0,
  1835. 'bt' => 0,
  1836. 'bw' => 0,
  1837. 'by' => 0,
  1838. 'bz' => 0,
  1839. 'ca' => 0,
  1840. 'cc' => 0,
  1841. 'cd' => 0,
  1842. 'cf' => 0,
  1843. 'cg' => 0,
  1844. 'ch' => 0,
  1845. 'ci' => 0,
  1846. 'ck' => 0,
  1847. 'cl' => 0,
  1848. 'cm' => 0,
  1849. 'cn' => 0,
  1850. 'co' => 0,
  1851. 'cr' => 0,
  1852. 'cu' => 0,
  1853. 'cv' => 0,
  1854. 'cx' => 0,
  1855. 'cy' => 0,
  1856. 'cz' => 0,
  1857. 'de' => 0,
  1858. 'dj' => 0,
  1859. 'dk' => 0,
  1860. 'dm' => 0,
  1861. 'do' => 0,
  1862. 'dz' => 0,
  1863. 'ec' => 0,
  1864. 'ee' => 0,
  1865. 'eg' => 0,
  1866. 'er' => 0,
  1867. 'es' => 0,
  1868. 'et' => 0,
  1869. 'fi' => 0,
  1870. 'fj' => 0,
  1871. 'fk' => 0,
  1872. 'fm' => 0,
  1873. 'fo' => 0,
  1874. 'fr' => 0,
  1875. 'ga' => 0,
  1876. 'gb' => 0,
  1877. 'gd' => 0,
  1878. 'ge' => 0,
  1879. 'gf' => 0,
  1880. 'gh' => 0,
  1881. 'gi' => 0,
  1882. 'gl' => 0,
  1883. 'gm' => 0,
  1884. 'gn' => 0,
  1885. 'gp' => 0,
  1886. 'gq' => 0,
  1887. 'gr' => 0,
  1888. 'gt' => 0,
  1889. 'gu' => 0,
  1890. 'gw' => 0,
  1891. 'gy' => 0,
  1892. 'hk' => 0,
  1893. 'hn' => 0,
  1894. 'hr' => 0,
  1895. 'ht' => 0,
  1896. 'hu' => 0,
  1897. 'id' => 0,
  1898. 'ie' => 0,
  1899. 'il' => 0,
  1900. 'in' => 0,
  1901. 'io' => 0,
  1902. 'iq' => 0,
  1903. 'ir' => 0,
  1904. 'is' => 0,
  1905. 'it' => 0,
  1906. 'jm' => 0,
  1907. 'jo' => 0,
  1908. 'jp' => 0,
  1909. 'ke' => 0,
  1910. 'kg' => 0,
  1911. 'kh' => 0,
  1912. 'ki' => 0,
  1913. 'km' => 0,
  1914. 'kn' => 0,
  1915. 'kp' => 0,
  1916. 'kr' => 0,
  1917. 'kw' => 0,
  1918. 'ky' => 0,
  1919. 'kz' => 0,
  1920. 'la' => 0,
  1921. 'lb' => 0,
  1922. 'lc' => 0,
  1923. 'li' => 0,
  1924. 'lk' => 0,
  1925. 'lr' => 0,
  1926. 'ls' => 0,
  1927. 'lt' => 0,
  1928. 'lu' => 0,
  1929. 'lv' => 0,
  1930. 'ly' => 0,
  1931. 'ma' => 0,
  1932. 'mc' => 0,
  1933. 'md' => 0,
  1934. 'me' => 0,
  1935. 'mg' => 0,
  1936. 'mh' => 0,
  1937. 'mk' => 0,
  1938. 'ml' => 0,
  1939. 'mm' => 0,
  1940. 'mn' => 0,
  1941. 'mo' => 0,
  1942. 'mp' => 0,
  1943. 'mq' => 0,
  1944. 'mr' => 0,
  1945. 'ms' => 0,
  1946. 'mt' => 0,
  1947. 'mu' => 0,
  1948. 'mv' => 0,
  1949. 'mw' => 0,
  1950. 'mx' => 0,
  1951. 'my' => 0,
  1952. 'mz' => 0,
  1953. 'na' => 0,
  1954. 'nc' => 0,
  1955. 'ne' => 0,
  1956. 'nf' => 0,
  1957. 'ng' => 0,
  1958. 'ni' => 0,
  1959. 'nl' => 0,
  1960. 'no' => 0,
  1961. 'np' => 0,
  1962. 'nr' => 0,
  1963. 'nu' => 0,
  1964. 'nz' => 0,
  1965. 'om' => 0,
  1966. 'pa' => 0,
  1967. 'pe' => 0,
  1968. 'pf' => 0,
  1969. 'pg' => 0,
  1970. 'ph' => 0,
  1971. 'pk' => 0,
  1972. 'pl' => 0,
  1973. 'pm' => 0,
  1974. 'pr' => 0,
  1975. 'ps' => 0,
  1976. 'pt' => 0,
  1977. 'pw' => 0,
  1978. 'py' => 0,
  1979. 'qa' => 0,
  1980. 'ro' => 0,
  1981. 'rs' => 0,
  1982. 'ru' => 0,
  1983. 'rw' => 0,
  1984. 'sa' => 0,
  1985. 'sb' => 0,
  1986. 'sc' => 0,
  1987. 'sd' => 0,
  1988. 'se' => 0,
  1989. 'sg' => 0,
  1990. 'sh' => 0,
  1991. 'si' => 0,
  1992. 'sk' => 0,
  1993. 'sl' => 0,
  1994. 'sm' => 0,
  1995. 'sn' => 0,
  1996. 'so' => 0,
  1997. 'sr' => 0,
  1998. 'ss' => 0,
  1999. 'st' => 0,
  2000. 'sv' => 0,
  2001. 'sy' => 0,
  2002. 'sz' => 0,
  2003. 'tc' => 0,
  2004. 'td' => 0,
  2005. 'tg' => 0,
  2006. 'th' => 0,
  2007. 'tj' => 0,
  2008. 'tk' => 0,
  2009. 'tm' => 0,
  2010. 'tn' => 0,
  2011. 'to' => 0,
  2012. 'tp' => 0,
  2013. 'tr' => 0,
  2014. 'tt' => 0,
  2015. 'tv' => 0,
  2016. 'tw' => 0,
  2017. 'tz' => 0,
  2018. 'ua' => 0,
  2019. 'ug' => 0,
  2020. 'us' => 0,
  2021. 'uy' => 0,
  2022. 'uz' => 0,
  2023. 'va' => 0,
  2024. 'vc' => 0,
  2025. 've' => 0,
  2026. 'vg' => 0,
  2027. 'vi' => 0,
  2028. 'vn' => 0,
  2029. 'vu' => 0,
  2030. 'wf' => 0,
  2031. 'ws' => 0,
  2032. 'ye' => 0,
  2033. 'yt' => 0,
  2034. 'za' => 0,
  2035. 'zm' => 0,
  2036. 'zw' => 0,
  2037. ),
  2038. 'hide_single_cc' => 0,
  2039. ),
  2040. 'default_country' => 'fr',
  2041. 'enable_country_level_validation' => 0,
  2042. 'enable_default_country' => 1,
  2043. 'enable_extension' => 0,
  2044. 'entity_translation_sync' => FALSE,
  2045. 'user_register_form' => FALSE,
  2046. ),
  2047. 'widget' => array(
  2048. 'active' => 0,
  2049. 'module' => 'cck_phone',
  2050. 'settings' => array(
  2051. 'size' => 15,
  2052. ),
  2053. 'type' => 'phone_number',
  2054. 'weight' => 8,
  2055. ),
  2056. );
  2057. // Exported field_instance: 'node-company-field_tode_company'.
  2058. $field_instances['node-company-field_tode_company'] = array(
  2059. 'bundle' => 'company',
  2060. 'deleted' => 0,
  2061. 'description' => '',
  2062. 'display' => array(
  2063. 'bookmark' => array(
  2064. 'label' => 'above',
  2065. 'settings' => array(),
  2066. 'type' => 'hidden',
  2067. 'weight' => 0,
  2068. ),
  2069. 'cardbig' => array(
  2070. 'label' => 'hidden',
  2071. 'module' => 'taxonomy',
  2072. 'settings' => array(),
  2073. 'type' => 'taxonomy_term_reference_plain',
  2074. 'weight' => 0,
  2075. ),
  2076. 'cardfull' => array(
  2077. 'label' => 'hidden',
  2078. 'module' => 'taxonomy',
  2079. 'settings' => array(),
  2080. 'type' => 'taxonomy_term_reference_plain',
  2081. 'weight' => 0,
  2082. ),
  2083. 'cardmedium' => array(
  2084. 'label' => 'hidden',
  2085. 'module' => 'taxonomy',
  2086. 'settings' => array(),
  2087. 'type' => 'taxonomy_term_reference_plain',
  2088. 'weight' => 0,
  2089. ),
  2090. 'cardsmall' => array(
  2091. 'label' => 'above',
  2092. 'settings' => array(),
  2093. 'type' => 'hidden',
  2094. 'weight' => 0,
  2095. ),
  2096. 'default' => array(
  2097. 'label' => 'hidden',
  2098. 'module' => 'taxonomy',
  2099. 'settings' => array(),
  2100. 'type' => 'taxonomy_term_reference_plain',
  2101. 'weight' => 0,
  2102. ),
  2103. 'homeblock' => array(
  2104. 'label' => 'above',
  2105. 'settings' => array(),
  2106. 'type' => 'hidden',
  2107. 'weight' => 0,
  2108. ),
  2109. 'print' => array(
  2110. 'label' => 'hidden',
  2111. 'module' => 'taxonomy',
  2112. 'settings' => array(),
  2113. 'type' => 'taxonomy_term_reference_plain',
  2114. 'weight' => 0,
  2115. ),
  2116. 'teaser' => array(
  2117. 'label' => 'above',
  2118. 'settings' => array(),
  2119. 'type' => 'hidden',
  2120. 'weight' => 0,
  2121. ),
  2122. ),
  2123. 'entity_type' => 'node',
  2124. 'field_name' => 'field_tode_company',
  2125. 'label' => 'Name',
  2126. 'required' => 1,
  2127. 'settings' => array(
  2128. 'entity_translation_sync' => FALSE,
  2129. 'user_register_form' => FALSE,
  2130. ),
  2131. 'widget' => array(
  2132. 'active' => 1,
  2133. 'module' => 'tode',
  2134. 'settings' => array(
  2135. 'choose_term_parent' => 0,
  2136. 'maxlength' => 255,
  2137. 'redirect_node_to_term' => 0,
  2138. 'redirect_term_to_node' => 1,
  2139. 'show_create_tode' => 0,
  2140. 'show_term_form' => 0,
  2141. 'size' => 60,
  2142. ),
  2143. 'type' => 'tode',
  2144. 'weight' => 1,
  2145. ),
  2146. );
  2147. // Exported field_instance: 'node-company-field_website'.
  2148. $field_instances['node-company-field_website'] = array(
  2149. 'bundle' => 'company',
  2150. 'default_value' => NULL,
  2151. 'deleted' => 0,
  2152. 'description' => '"http://" will be added automaticly.',
  2153. 'display' => array(
  2154. 'bookmark' => array(
  2155. 'label' => 'above',
  2156. 'settings' => array(),
  2157. 'type' => 'hidden',
  2158. 'weight' => 0,
  2159. ),
  2160. 'cardbig' => array(
  2161. 'label' => 'hidden',
  2162. 'module' => 'link',
  2163. 'settings' => array(
  2164. 'strip_www' => 1,
  2165. ),
  2166. 'type' => 'link_domain',
  2167. 'weight' => 4,
  2168. ),
  2169. 'cardfull' => array(
  2170. 'label' => 'hidden',
  2171. 'module' => 'link',
  2172. 'settings' => array(
  2173. 'strip_www' => 1,
  2174. ),
  2175. 'type' => 'link_domain',
  2176. 'weight' => 2,
  2177. ),
  2178. 'cardmedium' => array(
  2179. 'label' => 'hidden',
  2180. 'module' => 'link',
  2181. 'settings' => array(
  2182. 'strip_www' => 1,
  2183. ),
  2184. 'type' => 'link_domain',
  2185. 'weight' => 4,
  2186. ),
  2187. 'cardsmall' => array(
  2188. 'label' => 'above',
  2189. 'settings' => array(),
  2190. 'type' => 'hidden',
  2191. 'weight' => 0,
  2192. ),
  2193. 'default' => array(
  2194. 'label' => 'inline',
  2195. 'module' => 'link',
  2196. 'settings' => array(),
  2197. 'type' => 'link_default',
  2198. 'weight' => 3,
  2199. ),
  2200. 'homeblock' => array(
  2201. 'label' => 'above',
  2202. 'settings' => array(),
  2203. 'type' => 'hidden',
  2204. 'weight' => 0,
  2205. ),
  2206. 'print' => array(
  2207. 'label' => 'hidden',
  2208. 'module' => 'link',
  2209. 'settings' => array(),
  2210. 'type' => 'link_plain',
  2211. 'weight' => 3,
  2212. ),
  2213. 'teaser' => array(
  2214. 'label' => 'above',
  2215. 'settings' => array(),
  2216. 'type' => 'hidden',
  2217. 'weight' => 0,
  2218. ),
  2219. ),
  2220. 'entity_type' => 'node',
  2221. 'field_name' => 'field_website',
  2222. 'label' => 'website',
  2223. 'required' => 0,
  2224. 'settings' => array(
  2225. 'absolute_url' => 1,
  2226. 'attributes' => array(
  2227. 'class' => '',
  2228. 'configurable_class' => 0,
  2229. 'configurable_title' => 0,
  2230. 'rel' => '',
  2231. 'target' => '_blank',
  2232. 'title' => '',
  2233. ),
  2234. 'display' => array(
  2235. 'url_cutoff' => 80,
  2236. ),
  2237. 'enable_tokens' => 1,
  2238. 'entity_translation_sync' => FALSE,
  2239. 'rel_remove' => 'default',
  2240. 'title' => 'none',
  2241. 'title_label_use_field_label' => 0,
  2242. 'title_maxlength' => 128,
  2243. 'title_value' => '',
  2244. 'url' => 0,
  2245. 'user_register_form' => FALSE,
  2246. 'validate_url' => 0,
  2247. ),
  2248. 'widget' => array(
  2249. 'active' => 0,
  2250. 'module' => 'link',
  2251. 'settings' => array(),
  2252. 'type' => 'link_field',
  2253. 'weight' => 5,
  2254. ),
  2255. );
  2256. // Exported field_instance: 'node-materiau-field_attachments'.
  2257. $field_instances['node-materiau-field_attachments'] = array(
  2258. 'bundle' => 'materiau',
  2259. 'deleted' => 0,
  2260. 'description' => '',
  2261. 'display' => array(
  2262. 'bookmark' => array(
  2263. 'label' => 'above',
  2264. 'settings' => array(),
  2265. 'type' => 'hidden',
  2266. 'weight' => 18,
  2267. ),
  2268. 'cardbig' => array(
  2269. 'label' => 'above',
  2270. 'module' => 'file',
  2271. 'settings' => array(),
  2272. 'type' => 'file_default',
  2273. 'weight' => 6,
  2274. ),
  2275. 'cardfull' => array(
  2276. 'label' => 'hidden',
  2277. 'module' => 'file',
  2278. 'settings' => array(),
  2279. 'type' => 'file_default',
  2280. 'weight' => 18,
  2281. ),
  2282. 'cardmedium' => array(
  2283. 'label' => 'hidden',
  2284. 'module' => 'file',
  2285. 'settings' => array(),
  2286. 'type' => 'file_default',
  2287. 'weight' => 23,
  2288. ),
  2289. 'cardsmall' => array(
  2290. 'label' => 'above',
  2291. 'settings' => array(),
  2292. 'type' => 'hidden',
  2293. 'weight' => 16,
  2294. ),
  2295. 'default' => array(
  2296. 'label' => 'hidden',
  2297. 'module' => 'file',
  2298. 'settings' => array(),
  2299. 'type' => 'file_default',
  2300. 'weight' => 9,
  2301. ),
  2302. 'homeblock' => array(
  2303. 'label' => 'above',
  2304. 'settings' => array(),
  2305. 'type' => 'hidden',
  2306. 'weight' => 0,
  2307. ),
  2308. 'print' => array(
  2309. 'label' => 'above',
  2310. 'settings' => array(),
  2311. 'type' => 'hidden',
  2312. 'weight' => 18,
  2313. ),
  2314. 'teaser' => array(
  2315. 'label' => 'above',
  2316. 'settings' => array(),
  2317. 'type' => 'hidden',
  2318. 'weight' => 17,
  2319. ),
  2320. ),
  2321. 'entity_type' => 'node',
  2322. 'field_name' => 'field_attachments',
  2323. 'label' => 'Fichiers joints',
  2324. 'required' => 0,
  2325. 'settings' => array(
  2326. 'description_field' => 0,
  2327. 'entity_translation_sync' => FALSE,
  2328. 'file_directory' => '',
  2329. 'file_extensions' => 'txt pdf doc docx',
  2330. 'max_filesize' => '',
  2331. 'user_register_form' => FALSE,
  2332. ),
  2333. 'widget' => array(
  2334. 'active' => 1,
  2335. 'module' => 'file',
  2336. 'settings' => array(
  2337. 'progress_indicator' => 'throbber',
  2338. ),
  2339. 'type' => 'file_generic',
  2340. 'weight' => 3,
  2341. ),
  2342. );
  2343. // Exported field_instance: 'node-materiau-field_breve_ref'.
  2344. $field_instances['node-materiau-field_breve_ref'] = array(
  2345. 'bundle' => 'materiau',
  2346. 'default_value' => NULL,
  2347. 'deleted' => 0,
  2348. 'description' => '',
  2349. 'display' => array(
  2350. 'bookmark' => array(
  2351. 'label' => 'above',
  2352. 'settings' => array(),
  2353. 'type' => 'hidden',
  2354. 'weight' => 8,
  2355. ),
  2356. 'cardbig' => array(
  2357. 'label' => 'hidden',
  2358. 'settings' => array(),
  2359. 'type' => 'hidden',
  2360. 'weight' => 12,
  2361. ),
  2362. 'cardfull' => array(
  2363. 'label' => 'above',
  2364. 'settings' => array(),
  2365. 'type' => 'hidden',
  2366. 'weight' => 5,
  2367. ),
  2368. 'cardmedium' => array(
  2369. 'label' => 'hidden',
  2370. 'settings' => array(),
  2371. 'type' => 'hidden',
  2372. 'weight' => 15,
  2373. ),
  2374. 'cardsmall' => array(
  2375. 'label' => 'above',
  2376. 'settings' => array(),
  2377. 'type' => 'hidden',
  2378. 'weight' => 8,
  2379. ),
  2380. 'default' => array(
  2381. 'label' => 'above',
  2382. 'module' => 'entityreference',
  2383. 'settings' => array(
  2384. 'link' => FALSE,
  2385. ),
  2386. 'type' => 'entityreference_label',
  2387. 'weight' => 23,
  2388. ),
  2389. 'homeblock' => array(
  2390. 'label' => 'above',
  2391. 'settings' => array(),
  2392. 'type' => 'hidden',
  2393. 'weight' => 0,
  2394. ),
  2395. 'print' => array(
  2396. 'label' => 'above',
  2397. 'settings' => array(),
  2398. 'type' => 'hidden',
  2399. 'weight' => 12,
  2400. ),
  2401. 'teaser' => array(
  2402. 'label' => 'above',
  2403. 'settings' => array(),
  2404. 'type' => 'hidden',
  2405. 'weight' => 9,
  2406. ),
  2407. ),
  2408. 'entity_type' => 'node',
  2409. 'field_name' => 'field_breve_ref',
  2410. 'label' => 'Brève(s) liée(s)',
  2411. 'required' => 0,
  2412. 'settings' => array(
  2413. 'entity_translation_sync' => FALSE,
  2414. 'user_register_form' => FALSE,
  2415. ),
  2416. 'widget' => array(
  2417. 'active' => 1,
  2418. 'module' => 'entityreference',
  2419. 'settings' => array(
  2420. 'match_operator' => 'CONTAINS',
  2421. 'path' => '',
  2422. 'size' => 60,
  2423. ),
  2424. 'type' => 'entityreference_autocomplete',
  2425. 'weight' => 10,
  2426. ),
  2427. );
  2428. // Exported field_instance: 'node-materiau-field_company_distrib'.
  2429. $field_instances['node-materiau-field_company_distrib'] = array(
  2430. 'bundle' => 'materiau',
  2431. 'default_value' => NULL,
  2432. 'deleted' => 0,
  2433. 'description' => '',
  2434. 'display' => array(
  2435. 'bookmark' => array(
  2436. 'label' => 'above',
  2437. 'settings' => array(),
  2438. 'type' => 'hidden',
  2439. 'weight' => 4,
  2440. ),
  2441. 'cardbig' => array(
  2442. 'label' => 'inline',
  2443. 'module' => 'tode',
  2444. 'settings' => array(
  2445. 'viewmode' => 'cardbig',
  2446. ),
  2447. 'type' => 'tode',
  2448. 'weight' => 5,
  2449. ),
  2450. 'cardfull' => array(
  2451. 'label' => 'inline',
  2452. 'module' => 'tode',
  2453. 'settings' => array(
  2454. 'viewmode' => 'cardfull',
  2455. ),
  2456. 'type' => 'tode',
  2457. 'weight' => 20,
  2458. ),
  2459. 'cardmedium' => array(
  2460. 'label' => 'above',
  2461. 'module' => 'tode',
  2462. 'settings' => array(
  2463. 'viewmode' => 'cardmedium',
  2464. ),
  2465. 'type' => 'tode',
  2466. 'weight' => 10,
  2467. ),
  2468. 'cardsmall' => array(
  2469. 'label' => 'above',
  2470. 'settings' => array(),
  2471. 'type' => 'hidden',
  2472. 'weight' => 4,
  2473. ),
  2474. 'default' => array(
  2475. 'label' => 'inline',
  2476. 'module' => 'taxonomy',
  2477. 'settings' => array(),
  2478. 'type' => 'taxonomy_term_reference_link',
  2479. 'weight' => 18,
  2480. ),
  2481. 'homeblock' => array(
  2482. 'label' => 'above',
  2483. 'settings' => array(),
  2484. 'type' => 'hidden',
  2485. 'weight' => 0,
  2486. ),
  2487. 'print' => array(
  2488. 'label' => 'above',
  2489. 'module' => 'tode',
  2490. 'settings' => array(
  2491. 'viewmode' => 'print',
  2492. ),
  2493. 'type' => 'tode',
  2494. 'weight' => 9,
  2495. ),
  2496. 'teaser' => array(
  2497. 'label' => 'above',
  2498. 'settings' => array(),
  2499. 'type' => 'hidden',
  2500. 'weight' => 5,
  2501. ),
  2502. ),
  2503. 'entity_type' => 'node',
  2504. 'field_name' => 'field_company_distrib',
  2505. 'label' => 'Distributor',
  2506. 'required' => 0,
  2507. 'settings' => array(
  2508. 'entity_translation_sync' => FALSE,
  2509. 'user_register_form' => FALSE,
  2510. ),
  2511. 'widget' => array(
  2512. 'active' => 1,
  2513. 'module' => 'autocomplete_deluxe',
  2514. 'settings' => array(
  2515. 'autocomplete_deluxe_path' => 'autocomplete_deluxe/taxonomy',
  2516. 'content_taxonomy_autocomplete_new_terms' => 'deny',
  2517. 'limit' => 10,
  2518. 'size' => 60,
  2519. ),
  2520. 'type' => 'autocomplete_deluxe_taxonomy',
  2521. 'weight' => 25,
  2522. ),
  2523. );
  2524. // Exported field_instance: 'node-materiau-field_company_fab'.
  2525. $field_instances['node-materiau-field_company_fab'] = array(
  2526. 'bundle' => 'materiau',
  2527. 'default_value' => NULL,
  2528. 'deleted' => 0,
  2529. 'description' => '',
  2530. 'display' => array(
  2531. 'bookmark' => array(
  2532. 'label' => 'above',
  2533. 'settings' => array(),
  2534. 'type' => 'hidden',
  2535. 'weight' => 9,
  2536. ),
  2537. 'cardbig' => array(
  2538. 'label' => 'inline',
  2539. 'module' => 'tode',
  2540. 'settings' => array(
  2541. 'viewmode' => 'cardbig',
  2542. ),
  2543. 'type' => 'tode',
  2544. 'weight' => 4,
  2545. ),
  2546. 'cardfull' => array(
  2547. 'label' => 'inline',
  2548. 'module' => 'tode',
  2549. 'settings' => array(
  2550. 'viewmode' => 'cardfull',
  2551. ),
  2552. 'type' => 'tode',
  2553. 'weight' => 19,
  2554. ),
  2555. 'cardmedium' => array(
  2556. 'label' => 'above',
  2557. 'module' => 'tode',
  2558. 'settings' => array(
  2559. 'viewmode' => 'cardmedium',
  2560. ),
  2561. 'type' => 'tode',
  2562. 'weight' => 9,
  2563. ),
  2564. 'cardsmall' => array(
  2565. 'label' => 'above',
  2566. 'settings' => array(),
  2567. 'type' => 'hidden',
  2568. 'weight' => 9,
  2569. ),
  2570. 'default' => array(
  2571. 'label' => 'inline',
  2572. 'module' => 'taxonomy',
  2573. 'settings' => array(),
  2574. 'type' => 'taxonomy_term_reference_link',
  2575. 'weight' => 17,
  2576. ),
  2577. 'homeblock' => array(
  2578. 'label' => 'above',
  2579. 'settings' => array(),
  2580. 'type' => 'hidden',
  2581. 'weight' => 0,
  2582. ),
  2583. 'print' => array(
  2584. 'label' => 'above',
  2585. 'module' => 'tode',
  2586. 'settings' => array(
  2587. 'viewmode' => 'print',
  2588. ),
  2589. 'type' => 'tode',
  2590. 'weight' => 8,
  2591. ),
  2592. 'teaser' => array(
  2593. 'label' => 'above',
  2594. 'settings' => array(),
  2595. 'type' => 'hidden',
  2596. 'weight' => 6,
  2597. ),
  2598. ),
  2599. 'entity_type' => 'node',
  2600. 'field_name' => 'field_company_fab',
  2601. 'label' => 'Manufacturer',
  2602. 'required' => 0,
  2603. 'settings' => array(
  2604. 'entity_translation_sync' => FALSE,
  2605. 'user_register_form' => FALSE,
  2606. ),
  2607. 'widget' => array(
  2608. 'active' => 1,
  2609. 'module' => 'autocomplete_deluxe',
  2610. 'settings' => array(
  2611. 'autocomplete_deluxe_path' => 'autocomplete_deluxe/taxonomy',
  2612. 'content_taxonomy_autocomplete_new_terms' => 'deny',
  2613. 'limit' => 10,
  2614. 'size' => 60,
  2615. ),
  2616. 'type' => 'autocomplete_deluxe_taxonomy',
  2617. 'weight' => 24,
  2618. ),
  2619. );
  2620. // Exported field_instance: 'node-materiau-field_description'.
  2621. $field_instances['node-materiau-field_description'] = array(
  2622. 'bundle' => 'materiau',
  2623. 'default_value' => NULL,
  2624. 'deleted' => 0,
  2625. 'description' => '',
  2626. 'display' => array(
  2627. 'bookmark' => array(
  2628. 'label' => 'above',
  2629. 'settings' => array(),
  2630. 'type' => 'hidden',
  2631. 'weight' => 13,
  2632. ),
  2633. 'cardbig' => array(
  2634. 'label' => 'hidden',
  2635. 'module' => 'text',
  2636. 'settings' => array(),
  2637. 'type' => 'text_default',
  2638. 'weight' => 2,
  2639. ),
  2640. 'cardfull' => array(
  2641. 'label' => 'hidden',
  2642. 'module' => 'text',
  2643. 'settings' => array(),
  2644. 'type' => 'text_default',
  2645. 'weight' => 16,
  2646. ),
  2647. 'cardmedium' => array(
  2648. 'label' => 'hidden',
  2649. 'module' => 'text',
  2650. 'settings' => array(),
  2651. 'type' => 'text_default',
  2652. 'weight' => 11,
  2653. ),
  2654. 'cardsmall' => array(
  2655. 'label' => 'above',
  2656. 'settings' => array(),
  2657. 'type' => 'hidden',
  2658. 'weight' => 12,
  2659. ),
  2660. 'default' => array(
  2661. 'label' => 'hidden',
  2662. 'module' => 'text',
  2663. 'settings' => array(),
  2664. 'type' => 'text_default',
  2665. 'weight' => 0,
  2666. ),
  2667. 'homeblock' => array(
  2668. 'label' => 'above',
  2669. 'settings' => array(),
  2670. 'type' => 'hidden',
  2671. 'weight' => 0,
  2672. ),
  2673. 'print' => array(
  2674. 'label' => 'hidden',
  2675. 'module' => 'text',
  2676. 'settings' => array(),
  2677. 'type' => 'text_default',
  2678. 'weight' => 6,
  2679. ),
  2680. 'teaser' => array(
  2681. 'label' => 'hidden',
  2682. 'settings' => array(),
  2683. 'type' => 'hidden',
  2684. 'weight' => 4,
  2685. ),
  2686. ),
  2687. 'entity_type' => 'node',
  2688. 'field_name' => 'field_description',
  2689. 'label' => 'Description',
  2690. 'required' => 0,
  2691. 'settings' => array(
  2692. 'display_summary' => 1,
  2693. 'entity_translation_sync' => FALSE,
  2694. 'text_processing' => 1,
  2695. 'user_register_form' => FALSE,
  2696. ),
  2697. 'widget' => array(
  2698. 'active' => 1,
  2699. 'module' => 'text',
  2700. 'settings' => array(
  2701. 'rows' => 20,
  2702. 'summary_rows' => 5,
  2703. ),
  2704. 'type' => 'text_textarea_with_summary',
  2705. 'weight' => -2,
  2706. ),
  2707. );
  2708. // Exported field_instance: 'node-materiau-field_famille'.
  2709. $field_instances['node-materiau-field_famille'] = array(
  2710. 'bundle' => 'materiau',
  2711. 'default_value' => NULL,
  2712. 'deleted' => 0,
  2713. 'description' => '',
  2714. 'display' => array(
  2715. 'bookmark' => array(
  2716. 'label' => 'above',
  2717. 'settings' => array(),
  2718. 'type' => 'hidden',
  2719. 'weight' => 3,
  2720. ),
  2721. 'cardbig' => array(
  2722. 'label' => 'above',
  2723. 'settings' => array(),
  2724. 'type' => 'hidden',
  2725. 'weight' => 11,
  2726. ),
  2727. 'cardfull' => array(
  2728. 'label' => 'above',
  2729. 'settings' => array(),
  2730. 'type' => 'hidden',
  2731. 'weight' => 7,
  2732. ),
  2733. 'cardmedium' => array(
  2734. 'label' => 'above',
  2735. 'settings' => array(),
  2736. 'type' => 'hidden',
  2737. 'weight' => 10,
  2738. ),
  2739. 'cardsmall' => array(
  2740. 'label' => 'above',
  2741. 'settings' => array(),
  2742. 'type' => 'hidden',
  2743. 'weight' => 3,
  2744. ),
  2745. 'default' => array(
  2746. 'label' => 'above',
  2747. 'module' => 'list',
  2748. 'settings' => array(),
  2749. 'type' => 'list_default',
  2750. 'weight' => 19,
  2751. ),
  2752. 'homeblock' => array(
  2753. 'label' => 'above',
  2754. 'settings' => array(),
  2755. 'type' => 'hidden',
  2756. 'weight' => 0,
  2757. ),
  2758. 'print' => array(
  2759. 'label' => 'above',
  2760. 'settings' => array(),
  2761. 'type' => 'hidden',
  2762. 'weight' => 10,
  2763. ),
  2764. 'teaser' => array(
  2765. 'label' => 'above',
  2766. 'settings' => array(),
  2767. 'type' => 'hidden',
  2768. 'weight' => 7,
  2769. ),
  2770. ),
  2771. 'entity_type' => 'node',
  2772. 'field_name' => 'field_famille',
  2773. 'label' => 'Famille',
  2774. 'required' => 1,
  2775. 'settings' => array(
  2776. 'entity_translation_sync' => FALSE,
  2777. 'user_register_form' => FALSE,
  2778. ),
  2779. 'widget' => array(
  2780. 'active' => 1,
  2781. 'module' => 'options',
  2782. 'settings' => array(
  2783. 'content_taxonomy_opt_groups' => FALSE,
  2784. ),
  2785. 'type' => 'options_select',
  2786. 'weight' => 1,
  2787. ),
  2788. );
  2789. // Exported field_instance: 'node-materiau-field_identifiant'.
  2790. $field_instances['node-materiau-field_identifiant'] = array(
  2791. 'bundle' => 'materiau',
  2792. 'deleted' => 0,
  2793. 'description' => '',
  2794. 'display' => array(
  2795. 'bookmark' => array(
  2796. 'label' => 'above',
  2797. 'settings' => array(),
  2798. 'type' => 'hidden',
  2799. 'weight' => 2,
  2800. ),
  2801. 'cardbig' => array(
  2802. 'label' => 'above',
  2803. 'settings' => array(),
  2804. 'type' => 'hidden',
  2805. 'weight' => 10,
  2806. ),
  2807. 'cardfull' => array(
  2808. 'label' => 'above',
  2809. 'settings' => array(),
  2810. 'type' => 'hidden',
  2811. 'weight' => 3,
  2812. ),
  2813. 'cardmedium' => array(
  2814. 'label' => 'above',
  2815. 'settings' => array(),
  2816. 'type' => 'hidden',
  2817. 'weight' => 11,
  2818. ),
  2819. 'cardsmall' => array(
  2820. 'label' => 'above',
  2821. 'settings' => array(),
  2822. 'type' => 'hidden',
  2823. 'weight' => 5,
  2824. ),
  2825. 'default' => array(
  2826. 'label' => 'above',
  2827. 'module' => 'computed_field',
  2828. 'settings' => array(),
  2829. 'type' => 'computed_field_plain',
  2830. 'weight' => 20,
  2831. ),
  2832. 'homeblock' => array(
  2833. 'label' => 'above',
  2834. 'settings' => array(),
  2835. 'type' => 'hidden',
  2836. 'weight' => 0,
  2837. ),
  2838. 'print' => array(
  2839. 'label' => 'above',
  2840. 'settings' => array(),
  2841. 'type' => 'hidden',
  2842. 'weight' => 11,
  2843. ),
  2844. 'teaser' => array(
  2845. 'label' => 'above',
  2846. 'settings' => array(),
  2847. 'type' => 'hidden',
  2848. 'weight' => 8,
  2849. ),
  2850. ),
  2851. 'entity_type' => 'node',
  2852. 'field_name' => 'field_identifiant',
  2853. 'label' => 'Identifiant',
  2854. 'required' => 0,
  2855. 'settings' => array(
  2856. 'entity_translation_sync' => FALSE,
  2857. 'user_register_form' => FALSE,
  2858. ),
  2859. 'widget' => array(
  2860. 'active' => 0,
  2861. 'module' => 'computed_field',
  2862. 'settings' => array(),
  2863. 'type' => 'computed',
  2864. 'weight' => 3,
  2865. ),
  2866. );
  2867. // Exported field_instance: 'node-materiau-field_localisation'.
  2868. $field_instances['node-materiau-field_localisation'] = array(
  2869. 'bundle' => 'materiau',
  2870. 'default_value' => NULL,
  2871. 'deleted' => 0,
  2872. 'description' => '',
  2873. 'display' => array(
  2874. 'bookmark' => array(
  2875. 'label' => 'above',
  2876. 'settings' => array(),
  2877. 'type' => 'hidden',
  2878. 'weight' => 17,
  2879. ),
  2880. 'cardbig' => array(
  2881. 'label' => 'hidden',
  2882. 'settings' => array(),
  2883. 'type' => 'hidden',
  2884. 'weight' => 8,
  2885. ),
  2886. 'cardfull' => array(
  2887. 'label' => 'hidden',
  2888. 'settings' => array(),
  2889. 'type' => 'hidden',
  2890. 'weight' => 19,
  2891. ),
  2892. 'cardmedium' => array(
  2893. 'label' => 'hidden',
  2894. 'settings' => array(),
  2895. 'type' => 'hidden',
  2896. 'weight' => 16,
  2897. ),
  2898. 'cardsmall' => array(
  2899. 'label' => 'hidden',
  2900. 'settings' => array(),
  2901. 'type' => 'hidden',
  2902. 'weight' => 9,
  2903. ),
  2904. 'default' => array(
  2905. 'label' => 'hidden',
  2906. 'module' => 'text',
  2907. 'settings' => array(),
  2908. 'type' => 'text_default',
  2909. 'weight' => 14,
  2910. ),
  2911. 'homeblock' => array(
  2912. 'label' => 'above',
  2913. 'settings' => array(),
  2914. 'type' => 'hidden',
  2915. 'weight' => 0,
  2916. ),
  2917. 'print' => array(
  2918. 'label' => 'hidden',
  2919. 'settings' => array(),
  2920. 'type' => 'hidden',
  2921. 'weight' => 5,
  2922. ),
  2923. 'teaser' => array(
  2924. 'label' => 'above',
  2925. 'settings' => array(),
  2926. 'type' => 'hidden',
  2927. 'weight' => 16,
  2928. ),
  2929. ),
  2930. 'entity_type' => 'node',
  2931. 'field_name' => 'field_localisation',
  2932. 'label' => 'Localisation',
  2933. 'required' => 0,
  2934. 'settings' => array(
  2935. 'entity_translation_sync' => FALSE,
  2936. 'text_processing' => 0,
  2937. 'user_register_form' => FALSE,
  2938. ),
  2939. 'widget' => array(
  2940. 'active' => 1,
  2941. 'module' => 'text',
  2942. 'settings' => array(
  2943. 'size' => 60,
  2944. ),
  2945. 'type' => 'text_textfield',
  2946. 'weight' => -3,
  2947. ),
  2948. );
  2949. // Exported field_instance: 'node-materiau-field_materiau_image'.
  2950. $field_instances['node-materiau-field_materiau_image'] = array(
  2951. 'bundle' => 'materiau',
  2952. 'deleted' => 0,
  2953. 'description' => '',
  2954. 'display' => array(
  2955. 'bookmark' => array(
  2956. 'label' => 'hidden',
  2957. 'module' => 'image',
  2958. 'settings' => array(
  2959. 'image_link' => '',
  2960. 'image_style' => 'card-bookmark',
  2961. ),
  2962. 'type' => 'image',
  2963. 'weight' => 1,
  2964. ),
  2965. 'cardbig' => array(
  2966. 'label' => 'hidden',
  2967. 'module' => 'image',
  2968. 'settings' => array(
  2969. 'image_link' => '',
  2970. 'image_style' => 'card-big',
  2971. ),
  2972. 'type' => 'image',
  2973. 'weight' => 1,
  2974. ),
  2975. 'cardfull' => array(
  2976. 'label' => 'hidden',
  2977. 'module' => 'image',
  2978. 'settings' => array(
  2979. 'image_link' => '',
  2980. 'image_style' => 'card-full',
  2981. ),
  2982. 'type' => 'image',
  2983. 'weight' => 1,
  2984. ),
  2985. 'cardmedium' => array(
  2986. 'label' => 'hidden',
  2987. 'module' => 'image',
  2988. 'settings' => array(
  2989. 'image_link' => '',
  2990. 'image_style' => 'card-medium',
  2991. ),
  2992. 'type' => 'image',
  2993. 'weight' => 18,
  2994. ),
  2995. 'cardsmall' => array(
  2996. 'label' => 'hidden',
  2997. 'module' => 'image',
  2998. 'settings' => array(
  2999. 'image_link' => '',
  3000. 'image_style' => 'card-small',
  3001. ),
  3002. 'type' => 'image',
  3003. 'weight' => 2,
  3004. ),
  3005. 'default' => array(
  3006. 'label' => 'hidden',
  3007. 'module' => 'image',
  3008. 'settings' => array(
  3009. 'image_link' => '',
  3010. 'image_style' => 'large',
  3011. ),
  3012. 'type' => 'image',
  3013. 'weight' => 6,
  3014. ),
  3015. 'homeblock' => array(
  3016. 'label' => 'above',
  3017. 'settings' => array(),
  3018. 'type' => 'hidden',
  3019. 'weight' => 0,
  3020. ),
  3021. 'print' => array(
  3022. 'label' => 'hidden',
  3023. 'module' => 'image',
  3024. 'settings' => array(
  3025. 'image_link' => '',
  3026. 'image_style' => 'pdf',
  3027. ),
  3028. 'type' => 'image',
  3029. 'weight' => 7,
  3030. ),
  3031. 'teaser' => array(
  3032. 'label' => 'above',
  3033. 'settings' => array(),
  3034. 'type' => 'hidden',
  3035. 'weight' => 13,
  3036. ),
  3037. ),
  3038. 'entity_type' => 'node',
  3039. 'field_name' => 'field_materiau_image',
  3040. 'label' => 'Image',
  3041. 'required' => 0,
  3042. 'settings' => array(
  3043. 'alt_field' => 0,
  3044. 'default_image' => 0,
  3045. 'entity_translation_sync' => FALSE,
  3046. 'file_directory' => 'materiaux',
  3047. 'file_extensions' => 'png gif jpg jpeg',
  3048. 'max_filesize' => '',
  3049. 'max_resolution' => '',
  3050. 'min_resolution' => '',
  3051. 'title_field' => 1,
  3052. 'user_register_form' => FALSE,
  3053. ),
  3054. 'widget' => array(
  3055. 'active' => 1,
  3056. 'module' => 'image',
  3057. 'settings' => array(
  3058. 'preview_image_style' => 'medium',
  3059. 'progress_indicator' => 'throbber',
  3060. ),
  3061. 'type' => 'image_image',
  3062. 'weight' => 11,
  3063. ),
  3064. );
  3065. // Exported field_instance: 'node-materiau-field_materiau_ref'.
  3066. $field_instances['node-materiau-field_materiau_ref'] = array(
  3067. 'bundle' => 'materiau',
  3068. 'default_value' => NULL,
  3069. 'deleted' => 0,
  3070. 'description' => '',
  3071. 'display' => array(
  3072. 'bookmark' => array(
  3073. 'label' => 'above',
  3074. 'settings' => array(),
  3075. 'type' => 'hidden',
  3076. 'weight' => 6,
  3077. ),
  3078. 'cardbig' => array(
  3079. 'label' => 'above',
  3080. 'module' => 'entityreference',
  3081. 'settings' => array(
  3082. 'link' => 1,
  3083. ),
  3084. 'type' => 'entityreference_label',
  3085. 'weight' => 7,
  3086. ),
  3087. 'cardfull' => array(
  3088. 'label' => 'above',
  3089. 'module' => 'entityreference',
  3090. 'settings' => array(
  3091. 'link' => 1,
  3092. ),
  3093. 'type' => 'entityreference_label',
  3094. 'weight' => 21,
  3095. ),
  3096. 'cardmedium' => array(
  3097. 'label' => 'above',
  3098. 'module' => 'entityreference',
  3099. 'settings' => array(
  3100. 'link' => 1,
  3101. ),
  3102. 'type' => 'entityreference_label',
  3103. 'weight' => 24,
  3104. ),
  3105. 'cardsmall' => array(
  3106. 'label' => 'above',
  3107. 'settings' => array(),
  3108. 'type' => 'hidden',
  3109. 'weight' => 6,
  3110. ),
  3111. 'default' => array(
  3112. 'label' => 'above',
  3113. 'module' => 'entityreference',
  3114. 'settings' => array(
  3115. 'link' => FALSE,
  3116. ),
  3117. 'type' => 'entityreference_label',
  3118. 'weight' => 22,
  3119. ),
  3120. 'homeblock' => array(
  3121. 'label' => 'above',
  3122. 'settings' => array(),
  3123. 'type' => 'hidden',
  3124. 'weight' => 0,
  3125. ),
  3126. 'print' => array(
  3127. 'label' => 'above',
  3128. 'settings' => array(),
  3129. 'type' => 'hidden',
  3130. 'weight' => 13,
  3131. ),
  3132. 'teaser' => array(
  3133. 'label' => 'above',
  3134. 'settings' => array(),
  3135. 'type' => 'hidden',
  3136. 'weight' => 10,
  3137. ),
  3138. ),
  3139. 'entity_type' => 'node',
  3140. 'field_name' => 'field_materiau_ref',
  3141. 'label' => 'Materiau(x) lié(s)',
  3142. 'required' => 0,
  3143. 'settings' => array(
  3144. 'entity_translation_sync' => FALSE,
  3145. 'user_register_form' => FALSE,
  3146. ),
  3147. 'widget' => array(
  3148. 'active' => 1,
  3149. 'module' => 'entityreference',
  3150. 'settings' => array(
  3151. 'match_operator' => 'CONTAINS',
  3152. 'path' => '',
  3153. 'size' => 60,
  3154. ),
  3155. 'type' => 'entityreference_autocomplete',
  3156. 'weight' => 9,
  3157. ),
  3158. );
  3159. // Exported field_instance: 'node-materiau-field_memo'.
  3160. $field_instances['node-materiau-field_memo'] = array(
  3161. 'bundle' => 'materiau',
  3162. 'default_value' => NULL,
  3163. 'deleted' => 0,
  3164. 'description' => '',
  3165. 'display' => array(
  3166. 'bookmark' => array(
  3167. 'label' => 'above',
  3168. 'settings' => array(),
  3169. 'type' => 'hidden',
  3170. 'weight' => 14,
  3171. ),
  3172. 'cardbig' => array(
  3173. 'label' => 'above',
  3174. 'settings' => array(),
  3175. 'type' => 'hidden',
  3176. 'weight' => 14,
  3177. ),
  3178. 'cardfull' => array(
  3179. 'label' => 'above',
  3180. 'settings' => array(),
  3181. 'type' => 'hidden',
  3182. 'weight' => 9,
  3183. ),
  3184. 'cardmedium' => array(
  3185. 'label' => 'above',
  3186. 'settings' => array(),
  3187. 'type' => 'hidden',
  3188. 'weight' => 13,
  3189. ),
  3190. 'cardsmall' => array(
  3191. 'label' => 'above',
  3192. 'settings' => array(),
  3193. 'type' => 'hidden',
  3194. 'weight' => 13,
  3195. ),
  3196. 'default' => array(
  3197. 'label' => 'hidden',
  3198. 'settings' => array(),
  3199. 'type' => 'hidden',
  3200. 'weight' => 8,
  3201. ),
  3202. 'homeblock' => array(
  3203. 'label' => 'above',
  3204. 'settings' => array(),
  3205. 'type' => 'hidden',
  3206. 'weight' => 0,
  3207. ),
  3208. 'print' => array(
  3209. 'label' => 'above',
  3210. 'settings' => array(),
  3211. 'type' => 'hidden',
  3212. 'weight' => 17,
  3213. ),
  3214. 'teaser' => array(
  3215. 'label' => 'above',
  3216. 'settings' => array(),
  3217. 'type' => 'hidden',
  3218. 'weight' => 15,
  3219. ),
  3220. ),
  3221. 'entity_type' => 'node',
  3222. 'field_name' => 'field_memo',
  3223. 'label' => 'Mémo',
  3224. 'required' => 0,
  3225. 'settings' => array(
  3226. 'entity_translation_sync' => FALSE,
  3227. 'text_processing' => 0,
  3228. 'user_register_form' => FALSE,
  3229. ),
  3230. 'widget' => array(
  3231. 'active' => 1,
  3232. 'module' => 'text',
  3233. 'settings' => array(
  3234. 'rows' => 10,
  3235. ),
  3236. 'type' => 'text_textarea',
  3237. 'weight' => 7,
  3238. ),
  3239. );
  3240. // Exported field_instance: 'node-materiau-field_nature_titre'.
  3241. $field_instances['node-materiau-field_nature_titre'] = array(
  3242. 'bundle' => 'materiau',
  3243. 'default_value' => NULL,
  3244. 'deleted' => 0,
  3245. 'description' => '',
  3246. 'display' => array(
  3247. 'bookmark' => array(
  3248. 'label' => 'hidden',
  3249. 'module' => 'text',
  3250. 'settings' => array(),
  3251. 'type' => 'text_default',
  3252. 'weight' => 9,
  3253. ),
  3254. 'cardbig' => array(
  3255. 'label' => 'hidden',
  3256. 'module' => 'text',
  3257. 'settings' => array(),
  3258. 'type' => 'text_plain',
  3259. 'weight' => 6,
  3260. ),
  3261. 'cardfull' => array(
  3262. 'label' => 'hidden',
  3263. 'module' => 'text',
  3264. 'settings' => array(),
  3265. 'type' => 'text_plain',
  3266. 'weight' => 17,
  3267. ),
  3268. 'cardmedium' => array(
  3269. 'label' => 'hidden',
  3270. 'module' => 'text',
  3271. 'settings' => array(),
  3272. 'type' => 'text_plain',
  3273. 'weight' => 19,
  3274. ),
  3275. 'cardsmall' => array(
  3276. 'label' => 'hidden',
  3277. 'module' => 'text',
  3278. 'settings' => array(),
  3279. 'type' => 'text_plain',
  3280. 'weight' => 6,
  3281. ),
  3282. 'default' => array(
  3283. 'label' => 'hidden',
  3284. 'module' => 'text',
  3285. 'settings' => array(),
  3286. 'type' => 'text_default',
  3287. 'weight' => 1,
  3288. ),
  3289. 'homeblock' => array(
  3290. 'label' => 'above',
  3291. 'settings' => array(),
  3292. 'type' => 'hidden',
  3293. 'weight' => 0,
  3294. ),
  3295. 'print' => array(
  3296. 'label' => 'hidden',
  3297. 'module' => 'title',
  3298. 'settings' => array(
  3299. 'title_class' => '',
  3300. 'title_link' => '',
  3301. 'title_style' => '',
  3302. ),
  3303. 'type' => 'title_linked',
  3304. 'weight' => 2,
  3305. ),
  3306. 'teaser' => array(
  3307. 'label' => 'hidden',
  3308. 'module' => 'text',
  3309. 'settings' => array(),
  3310. 'type' => 'text_default',
  3311. 'weight' => 2,
  3312. ),
  3313. ),
  3314. 'entity_type' => 'node',
  3315. 'field_name' => 'field_nature_titre',
  3316. 'label' => 'Nature Titre',
  3317. 'required' => 0,
  3318. 'settings' => array(
  3319. 'entity_translation_sync' => FALSE,
  3320. 'text_processing' => 0,
  3321. 'user_register_form' => FALSE,
  3322. ),
  3323. 'widget' => array(
  3324. 'active' => 1,
  3325. 'module' => 'text',
  3326. 'settings' => array(
  3327. 'size' => 60,
  3328. ),
  3329. 'type' => 'text_textfield',
  3330. 'weight' => -4,
  3331. ),
  3332. );
  3333. // Exported field_instance: 'node-materiau-field_onthologie'.
  3334. $field_instances['node-materiau-field_onthologie'] = array(
  3335. 'bundle' => 'materiau',
  3336. 'default_value' => NULL,
  3337. 'deleted' => 0,
  3338. 'description' => '',
  3339. 'display' => array(
  3340. 'bookmark' => array(
  3341. 'label' => 'above',
  3342. 'settings' => array(),
  3343. 'type' => 'hidden',
  3344. 'weight' => 10,
  3345. ),
  3346. 'cardbig' => array(
  3347. 'label' => 'above',
  3348. 'settings' => array(),
  3349. 'type' => 'hidden',
  3350. 'weight' => 13,
  3351. ),
  3352. 'cardfull' => array(
  3353. 'label' => 'above',
  3354. 'settings' => array(),
  3355. 'type' => 'hidden',
  3356. 'weight' => 8,
  3357. ),
  3358. 'cardmedium' => array(
  3359. 'label' => 'above',
  3360. 'settings' => array(),
  3361. 'type' => 'hidden',
  3362. 'weight' => 12,
  3363. ),
  3364. 'cardsmall' => array(
  3365. 'label' => 'above',
  3366. 'settings' => array(),
  3367. 'type' => 'hidden',
  3368. 'weight' => 10,
  3369. ),
  3370. 'default' => array(
  3371. 'label' => 'hidden',
  3372. 'module' => 'taxonomy',
  3373. 'settings' => array(),
  3374. 'type' => 'taxonomy_term_reference_link',
  3375. 'weight' => 16,
  3376. ),
  3377. 'homeblock' => array(
  3378. 'label' => 'above',
  3379. 'settings' => array(),
  3380. 'type' => 'hidden',
  3381. 'weight' => 0,
  3382. ),
  3383. 'print' => array(
  3384. 'label' => 'above',
  3385. 'settings' => array(),
  3386. 'type' => 'hidden',
  3387. 'weight' => 14,
  3388. ),
  3389. 'teaser' => array(
  3390. 'label' => 'above',
  3391. 'settings' => array(),
  3392. 'type' => 'hidden',
  3393. 'weight' => 11,
  3394. ),
  3395. ),
  3396. 'entity_type' => 'node',
  3397. 'field_name' => 'field_onthologie',
  3398. 'label' => 'Onthologie',
  3399. 'required' => 0,
  3400. 'settings' => array(
  3401. 'entity_translation_sync' => FALSE,
  3402. 'user_register_form' => FALSE,
  3403. ),
  3404. 'widget' => array(
  3405. 'active' => 1,
  3406. 'module' => 'term_reference_tree',
  3407. 'settings' => array(
  3408. 'cascading_selection' => 0,
  3409. 'filter_view' => '',
  3410. 'leaves_only' => 0,
  3411. 'max_depth' => '',
  3412. 'parent_term_id' => '',
  3413. 'select_parents' => 1,
  3414. 'start_minimized' => 1,
  3415. 'starting_depth' => 2,
  3416. 'token_display' => '',
  3417. 'track_list' => 1,
  3418. 'track_list_order' => 1,
  3419. ),
  3420. 'type' => 'term_reference_tree',
  3421. 'weight' => 22,
  3422. ),
  3423. );
  3424. // Exported field_instance: 'node-materiau-field_reference_materio'.
  3425. $field_instances['node-materiau-field_reference_materio'] = array(
  3426. 'bundle' => 'materiau',
  3427. 'deleted' => 0,
  3428. 'description' => '',
  3429. 'display' => array(
  3430. 'bookmark' => array(
  3431. 'label' => 'hidden',
  3432. 'module' => 'computed_field',
  3433. 'settings' => array(),
  3434. 'type' => 'computed_field_plain',
  3435. 'weight' => 10,
  3436. ),
  3437. 'cardbig' => array(
  3438. 'label' => 'hidden',
  3439. 'module' => 'computed_field',
  3440. 'settings' => array(),
  3441. 'type' => 'computed_field_plain',
  3442. 'weight' => 7,
  3443. ),
  3444. 'cardfull' => array(
  3445. 'label' => 'hidden',
  3446. 'module' => 'computed_field',
  3447. 'settings' => array(),
  3448. 'type' => 'computed_field_plain',
  3449. 'weight' => 18,
  3450. ),
  3451. 'cardmedium' => array(
  3452. 'label' => 'hidden',
  3453. 'module' => 'computed_field',
  3454. 'settings' => array(),
  3455. 'type' => 'computed_field_plain',
  3456. 'weight' => 20,
  3457. ),
  3458. 'cardsmall' => array(
  3459. 'label' => 'hidden',
  3460. 'module' => 'computed_field',
  3461. 'settings' => array(),
  3462. 'type' => 'computed_field_plain',
  3463. 'weight' => 7,
  3464. ),
  3465. 'default' => array(
  3466. 'label' => 'above',
  3467. 'module' => 'computed_field',
  3468. 'settings' => array(),
  3469. 'type' => 'computed_field_plain',
  3470. 'weight' => 21,
  3471. ),
  3472. 'homeblock' => array(
  3473. 'label' => 'above',
  3474. 'settings' => array(),
  3475. 'type' => 'hidden',
  3476. 'weight' => 0,
  3477. ),
  3478. 'print' => array(
  3479. 'label' => 'hidden',
  3480. 'module' => 'computed_field',
  3481. 'settings' => array(),
  3482. 'type' => 'computed_field_plain',
  3483. 'weight' => 4,
  3484. ),
  3485. 'teaser' => array(
  3486. 'label' => 'hidden',
  3487. 'module' => 'computed_field',
  3488. 'settings' => array(),
  3489. 'type' => 'computed_field_unsanitized',
  3490. 'weight' => 1,
  3491. ),
  3492. ),
  3493. 'entity_type' => 'node',
  3494. 'field_name' => 'field_reference_materio',
  3495. 'label' => 'Référence Materio',
  3496. 'required' => 0,
  3497. 'settings' => array(
  3498. 'entity_translation_sync' => FALSE,
  3499. 'user_register_form' => FALSE,
  3500. ),
  3501. 'widget' => array(
  3502. 'active' => 0,
  3503. 'module' => 'computed_field',
  3504. 'settings' => array(),
  3505. 'type' => 'computed',
  3506. 'weight' => 4,
  3507. ),
  3508. );
  3509. // Exported field_instance: 'node-materiau-field_tags_libres'.
  3510. $field_instances['node-materiau-field_tags_libres'] = array(
  3511. 'bundle' => 'materiau',
  3512. 'default_value' => NULL,
  3513. 'deleted' => 0,
  3514. 'description' => '<b>/!\\ Attention</b> VOus ne pouvez pas ajouter de nouveaux tag ici.<br/>
  3515. Vous devez avant d\'utiliser un nouveau tag le créer <a href="/admin/structure/taxonomy/tag_libres/add"><b>ici</b></a>',
  3516. 'display' => array(
  3517. 'bookmark' => array(
  3518. 'label' => 'above',
  3519. 'settings' => array(),
  3520. 'type' => 'hidden',
  3521. 'weight' => 16,
  3522. ),
  3523. 'cardbig' => array(
  3524. 'label' => 'hidden',
  3525. 'settings' => array(),
  3526. 'type' => 'hidden',
  3527. 'weight' => 9,
  3528. ),
  3529. 'cardfull' => array(
  3530. 'label' => 'above',
  3531. 'settings' => array(),
  3532. 'type' => 'hidden',
  3533. 'weight' => 11,
  3534. ),
  3535. 'cardmedium' => array(
  3536. 'label' => 'above',
  3537. 'settings' => array(),
  3538. 'type' => 'hidden',
  3539. 'weight' => 14,
  3540. ),
  3541. 'cardsmall' => array(
  3542. 'label' => 'above',
  3543. 'settings' => array(),
  3544. 'type' => 'hidden',
  3545. 'weight' => 15,
  3546. ),
  3547. 'default' => array(
  3548. 'label' => 'hidden',
  3549. 'module' => 'taxonomy',
  3550. 'settings' => array(),
  3551. 'type' => 'taxonomy_term_reference_link',
  3552. 'weight' => 15,
  3553. ),
  3554. 'homeblock' => array(
  3555. 'label' => 'above',
  3556. 'settings' => array(),
  3557. 'type' => 'hidden',
  3558. 'weight' => 0,
  3559. ),
  3560. 'print' => array(
  3561. 'label' => 'above',
  3562. 'settings' => array(),
  3563. 'type' => 'hidden',
  3564. 'weight' => 15,
  3565. ),
  3566. 'teaser' => array(
  3567. 'label' => 'above',
  3568. 'settings' => array(),
  3569. 'type' => 'hidden',
  3570. 'weight' => 12,
  3571. ),
  3572. ),
  3573. 'entity_type' => 'node',
  3574. 'field_name' => 'field_tags_libres',
  3575. 'label' => 'Tags libres',
  3576. 'required' => 0,
  3577. 'settings' => array(
  3578. 'entity_translation_sync' => FALSE,
  3579. 'user_register_form' => FALSE,
  3580. ),
  3581. 'widget' => array(
  3582. 'active' => 1,
  3583. 'module' => 'synonyms',
  3584. 'settings' => array(
  3585. 'auto_creation' => 0,
  3586. 'size' => 60,
  3587. 'suggest_only_unique' => 0,
  3588. 'suggestion_size' => 10,
  3589. 'synonyms_autocomplete_path' => 'synonyms/autocomplete-taxonomy-term',
  3590. ),
  3591. 'type' => 'synonyms_autocomplete_taxonomy_term',
  3592. 'weight' => 23,
  3593. ),
  3594. );
  3595. // Exported field_instance: 'node-materiau-field_video_filter'.
  3596. $field_instances['node-materiau-field_video_filter'] = array(
  3597. 'bundle' => 'materiau',
  3598. 'default_value' => NULL,
  3599. 'deleted' => 0,
  3600. 'description' => '',
  3601. 'display' => array(
  3602. 'bookmark' => array(
  3603. 'label' => 'above',
  3604. 'settings' => array(),
  3605. 'type' => 'hidden',
  3606. 'weight' => 11,
  3607. ),
  3608. 'cardbig' => array(
  3609. 'label' => 'above',
  3610. 'settings' => array(),
  3611. 'type' => 'hidden',
  3612. 'weight' => 8,
  3613. ),
  3614. 'cardfull' => array(
  3615. 'label' => 'above',
  3616. 'settings' => array(),
  3617. 'type' => 'hidden',
  3618. 'weight' => 12,
  3619. ),
  3620. 'cardmedium' => array(
  3621. 'label' => 'hidden',
  3622. 'settings' => array(),
  3623. 'type' => 'hidden',
  3624. 'weight' => 8,
  3625. ),
  3626. 'cardsmall' => array(
  3627. 'label' => 'above',
  3628. 'settings' => array(),
  3629. 'type' => 'hidden',
  3630. 'weight' => 11,
  3631. ),
  3632. 'default' => array(
  3633. 'label' => 'hidden',
  3634. 'module' => 'video_filter_field',
  3635. 'settings' => array(),
  3636. 'type' => 'video_filter_field_default',
  3637. 'weight' => 7,
  3638. ),
  3639. 'homeblock' => array(
  3640. 'label' => 'above',
  3641. 'settings' => array(),
  3642. 'type' => 'hidden',
  3643. 'weight' => 0,
  3644. ),
  3645. 'print' => array(
  3646. 'label' => 'above',
  3647. 'settings' => array(),
  3648. 'type' => 'hidden',
  3649. 'weight' => 16,
  3650. ),
  3651. 'teaser' => array(
  3652. 'label' => 'above',
  3653. 'settings' => array(),
  3654. 'type' => 'hidden',
  3655. 'weight' => 14,
  3656. ),
  3657. ),
  3658. 'entity_type' => 'node',
  3659. 'field_name' => 'field_video_filter',
  3660. 'label' => 'video',
  3661. 'required' => 0,
  3662. 'settings' => array(
  3663. 'autoplay' => 0,
  3664. 'entity_translation_sync' => FALSE,
  3665. 'max_height' => 400,
  3666. 'max_width' => 400,
  3667. 'user_register_form' => FALSE,
  3668. ),
  3669. 'widget' => array(
  3670. 'active' => 0,
  3671. 'module' => 'video_filter_field',
  3672. 'settings' => array(),
  3673. 'type' => 'video_filter',
  3674. 'weight' => 12,
  3675. ),
  3676. );
  3677. // Exported field_instance: 'node-materiau-field_workflow_state'.
  3678. $field_instances['node-materiau-field_workflow_state'] = array(
  3679. 'bundle' => 'materiau',
  3680. 'default_value' => NULL,
  3681. 'deleted' => 0,
  3682. 'description' => '',
  3683. 'display' => array(
  3684. 'bookmark' => array(
  3685. 'label' => 'above',
  3686. 'settings' => array(),
  3687. 'type' => 'hidden',
  3688. 'weight' => 0,
  3689. ),
  3690. 'cardbig' => array(
  3691. 'label' => 'above',
  3692. 'settings' => array(),
  3693. 'type' => 'hidden',
  3694. 'weight' => 6,
  3695. ),
  3696. 'cardfull' => array(
  3697. 'label' => 'above',
  3698. 'settings' => array(),
  3699. 'type' => 'hidden',
  3700. 'weight' => 0,
  3701. ),
  3702. 'cardmedium' => array(
  3703. 'label' => 'above',
  3704. 'settings' => array(),
  3705. 'type' => 'hidden',
  3706. 'weight' => 9,
  3707. ),
  3708. 'cardsmall' => array(
  3709. 'label' => 'above',
  3710. 'settings' => array(),
  3711. 'type' => 'hidden',
  3712. 'weight' => 0,
  3713. ),
  3714. 'default' => array(
  3715. 'label' => 'above',
  3716. 'settings' => array(),
  3717. 'type' => 'hidden',
  3718. 'weight' => 24,
  3719. ),
  3720. 'homeblock' => array(
  3721. 'label' => 'above',
  3722. 'settings' => array(),
  3723. 'type' => 'hidden',
  3724. 'weight' => 0,
  3725. ),
  3726. 'print' => array(
  3727. 'label' => 'above',
  3728. 'settings' => array(),
  3729. 'type' => 'hidden',
  3730. 'weight' => 9,
  3731. ),
  3732. 'teaser' => array(
  3733. 'label' => 'hidden',
  3734. 'settings' => array(),
  3735. 'type' => 'hidden',
  3736. 'weight' => 3,
  3737. ),
  3738. ),
  3739. 'entity_type' => 'node',
  3740. 'field_name' => 'field_workflow_state',
  3741. 'label' => 'Workflow State',
  3742. 'required' => 0,
  3743. 'settings' => array(
  3744. 'entity_translation_sync' => FALSE,
  3745. 'user_register_form' => FALSE,
  3746. ),
  3747. 'widget' => array(
  3748. 'active' => 0,
  3749. 'module' => 'field_extrawidgets',
  3750. 'settings' => array(
  3751. 'display_empty' => 0,
  3752. 'formatter' => '',
  3753. 'formatter_settings' => array(),
  3754. ),
  3755. 'type' => 'field_extrawidgets_read_only',
  3756. 'weight' => 11,
  3757. ),
  3758. );
  3759. // Exported field_instance: 'node-materiau-title_field'.
  3760. $field_instances['node-materiau-title_field'] = array(
  3761. 'bundle' => 'materiau',
  3762. 'default_value' => NULL,
  3763. 'deleted' => 0,
  3764. 'description' => 'A field replacing node title.',
  3765. 'display' => array(
  3766. 'bookmark' => array(
  3767. 'label' => 'hidden',
  3768. 'module' => 'text',
  3769. 'settings' => array(),
  3770. 'type' => 'text_plain',
  3771. 'weight' => 8,
  3772. ),
  3773. 'cardbig' => array(
  3774. 'label' => 'hidden',
  3775. 'module' => 'text',
  3776. 'settings' => array(),
  3777. 'type' => 'text_plain',
  3778. 'weight' => 5,
  3779. ),
  3780. 'cardfull' => array(
  3781. 'label' => 'hidden',
  3782. 'module' => 'text',
  3783. 'settings' => array(),
  3784. 'type' => 'text_plain',
  3785. 'weight' => 16,
  3786. ),
  3787. 'cardmedium' => array(
  3788. 'label' => 'hidden',
  3789. 'module' => 'text',
  3790. 'settings' => array(),
  3791. 'type' => 'text_plain',
  3792. 'weight' => 18,
  3793. ),
  3794. 'cardsmall' => array(
  3795. 'label' => 'hidden',
  3796. 'module' => 'text',
  3797. 'settings' => array(),
  3798. 'type' => 'text_plain',
  3799. 'weight' => 5,
  3800. ),
  3801. 'default' => array(
  3802. 'label' => 'hidden',
  3803. 'module' => 'text',
  3804. 'settings' => array(),
  3805. 'type' => 'text_default',
  3806. 'weight' => 12,
  3807. ),
  3808. 'homeblock' => array(
  3809. 'label' => 'above',
  3810. 'settings' => array(),
  3811. 'type' => 'hidden',
  3812. 'weight' => 0,
  3813. ),
  3814. 'print' => array(
  3815. 'label' => 'hidden',
  3816. 'module' => 'text',
  3817. 'settings' => array(),
  3818. 'type' => 'text_default',
  3819. 'weight' => 1,
  3820. ),
  3821. 'teaser' => array(
  3822. 'label' => 'hidden',
  3823. 'module' => 'text',
  3824. 'settings' => array(),
  3825. 'type' => 'text_default',
  3826. 'weight' => 0,
  3827. ),
  3828. ),
  3829. 'entity_type' => 'node',
  3830. 'field_name' => 'title_field',
  3831. 'label' => 'Nom',
  3832. 'required' => 1,
  3833. 'settings' => array(
  3834. 'entity_translation_sync' => FALSE,
  3835. 'hide_label' => array(
  3836. 'entity' => 0,
  3837. 'page' => 0,
  3838. ),
  3839. 'text_processing' => 0,
  3840. 'user_register_form' => FALSE,
  3841. ),
  3842. 'widget' => array(
  3843. 'active' => 1,
  3844. 'module' => 'text',
  3845. 'settings' => array(
  3846. 'size' => 60,
  3847. ),
  3848. 'type' => 'text_textfield',
  3849. 'weight' => -5,
  3850. ),
  3851. );
  3852. // Exported field_instance: 'node-page-body'.
  3853. $field_instances['node-page-body'] = array(
  3854. 'bundle' => 'page',
  3855. 'default_value' => NULL,
  3856. 'deleted' => 0,
  3857. 'description' => '',
  3858. 'display' => array(
  3859. 'bookmark' => array(
  3860. 'label' => 'above',
  3861. 'settings' => array(),
  3862. 'type' => 'hidden',
  3863. 'weight' => 0,
  3864. ),
  3865. 'cardbig' => array(
  3866. 'label' => 'above',
  3867. 'settings' => array(),
  3868. 'type' => 'hidden',
  3869. 'weight' => 0,
  3870. ),
  3871. 'cardfull' => array(
  3872. 'label' => 'above',
  3873. 'settings' => array(),
  3874. 'type' => 'hidden',
  3875. 'weight' => 0,
  3876. ),
  3877. 'cardmedium' => array(
  3878. 'label' => 'above',
  3879. 'settings' => array(),
  3880. 'type' => 'hidden',
  3881. 'weight' => 0,
  3882. ),
  3883. 'cardsmall' => array(
  3884. 'label' => 'above',
  3885. 'settings' => array(),
  3886. 'type' => 'hidden',
  3887. 'weight' => 0,
  3888. ),
  3889. 'default' => array(
  3890. 'label' => 'hidden',
  3891. 'module' => 'text',
  3892. 'settings' => array(),
  3893. 'type' => 'text_default',
  3894. 'weight' => 2,
  3895. ),
  3896. 'homeblock' => array(
  3897. 'label' => 'hidden',
  3898. 'module' => 'text',
  3899. 'settings' => array(
  3900. 'trim_length' => 600,
  3901. ),
  3902. 'type' => 'text_summary_or_trimmed',
  3903. 'weight' => 4,
  3904. ),
  3905. 'print' => array(
  3906. 'label' => 'above',
  3907. 'settings' => array(),
  3908. 'type' => 'hidden',
  3909. 'weight' => 0,
  3910. ),
  3911. 'teaser' => array(
  3912. 'label' => 'hidden',
  3913. 'module' => 'text',
  3914. 'settings' => array(
  3915. 'trim_length' => 600,
  3916. ),
  3917. 'type' => 'text_summary_or_trimmed',
  3918. 'weight' => 3,
  3919. ),
  3920. ),
  3921. 'entity_type' => 'node',
  3922. 'field_name' => 'body',
  3923. 'label' => 'Body',
  3924. 'required' => FALSE,
  3925. 'settings' => array(
  3926. 'display_summary' => TRUE,
  3927. 'entity_translation_sync' => FALSE,
  3928. 'text_processing' => 1,
  3929. 'user_register_form' => FALSE,
  3930. ),
  3931. 'widget' => array(
  3932. 'module' => 'text',
  3933. 'settings' => array(
  3934. 'rows' => 20,
  3935. 'summary_rows' => 5,
  3936. ),
  3937. 'type' => 'text_textarea_with_summary',
  3938. 'weight' => 1,
  3939. ),
  3940. );
  3941. // Exported field_instance: 'node-page-field_bandeau'.
  3942. $field_instances['node-page-field_bandeau'] = array(
  3943. 'bundle' => 'page',
  3944. 'deleted' => 0,
  3945. 'description' => '',
  3946. 'display' => array(
  3947. 'bookmark' => array(
  3948. 'label' => 'above',
  3949. 'settings' => array(),
  3950. 'type' => 'hidden',
  3951. 'weight' => 0,
  3952. ),
  3953. 'cardbig' => array(
  3954. 'label' => 'above',
  3955. 'settings' => array(),
  3956. 'type' => 'hidden',
  3957. 'weight' => 0,
  3958. ),
  3959. 'cardfull' => array(
  3960. 'label' => 'above',
  3961. 'settings' => array(),
  3962. 'type' => 'hidden',
  3963. 'weight' => 0,
  3964. ),
  3965. 'cardmedium' => array(
  3966. 'label' => 'above',
  3967. 'settings' => array(),
  3968. 'type' => 'hidden',
  3969. 'weight' => 0,
  3970. ),
  3971. 'cardsmall' => array(
  3972. 'label' => 'above',
  3973. 'settings' => array(),
  3974. 'type' => 'hidden',
  3975. 'weight' => 0,
  3976. ),
  3977. 'default' => array(
  3978. 'label' => 'hidden',
  3979. 'module' => 'image',
  3980. 'settings' => array(
  3981. 'image_link' => '',
  3982. 'image_style' => '',
  3983. ),
  3984. 'type' => 'image',
  3985. 'weight' => 0,
  3986. ),
  3987. 'homeblock' => array(
  3988. 'label' => 'hidden',
  3989. 'module' => 'image',
  3990. 'settings' => array(
  3991. 'image_link' => '',
  3992. 'image_style' => '',
  3993. ),
  3994. 'type' => 'image',
  3995. 'weight' => 0,
  3996. ),
  3997. 'teaser' => array(
  3998. 'label' => 'hidden',
  3999. 'module' => 'image',
  4000. 'settings' => array(
  4001. 'image_link' => '',
  4002. 'image_style' => '',
  4003. ),
  4004. 'type' => 'image',
  4005. 'weight' => 0,
  4006. ),
  4007. ),
  4008. 'entity_type' => 'node',
  4009. 'field_name' => 'field_bandeau',
  4010. 'label' => 'Bandeau',
  4011. 'required' => 0,
  4012. 'settings' => array(
  4013. 'alt_field' => 0,
  4014. 'default_image' => 0,
  4015. 'entity_translation_sync' => FALSE,
  4016. 'file_directory' => '',
  4017. 'file_extensions' => 'png gif jpg jpeg',
  4018. 'max_filesize' => '',
  4019. 'max_resolution' => '',
  4020. 'min_resolution' => '',
  4021. 'title_field' => 0,
  4022. 'user_register_form' => FALSE,
  4023. ),
  4024. 'widget' => array(
  4025. 'active' => 1,
  4026. 'module' => 'image',
  4027. 'settings' => array(
  4028. 'preview_image_style' => 'thumbnail',
  4029. 'progress_indicator' => 'throbber',
  4030. ),
  4031. 'type' => 'image_image',
  4032. 'weight' => 2,
  4033. ),
  4034. );
  4035. // Exported field_instance: 'node-page-field_emvideo'.
  4036. $field_instances['node-page-field_emvideo'] = array(
  4037. 'bundle' => 'page',
  4038. 'default_value' => NULL,
  4039. 'deleted' => 0,
  4040. 'description' => '',
  4041. 'display' => array(
  4042. 'bookmark' => array(
  4043. 'label' => 'above',
  4044. 'settings' => array(),
  4045. 'type' => 'hidden',
  4046. 'weight' => 0,
  4047. ),
  4048. 'cardbig' => array(
  4049. 'label' => 'above',
  4050. 'settings' => array(),
  4051. 'type' => 'hidden',
  4052. 'weight' => 0,
  4053. ),
  4054. 'cardfull' => array(
  4055. 'label' => 'above',
  4056. 'settings' => array(),
  4057. 'type' => 'hidden',
  4058. 'weight' => 0,
  4059. ),
  4060. 'cardmedium' => array(
  4061. 'label' => 'above',
  4062. 'settings' => array(),
  4063. 'type' => 'hidden',
  4064. 'weight' => 0,
  4065. ),
  4066. 'cardsmall' => array(
  4067. 'label' => 'above',
  4068. 'settings' => array(),
  4069. 'type' => 'hidden',
  4070. 'weight' => 0,
  4071. ),
  4072. 'default' => array(
  4073. 'label' => 'hidden',
  4074. 'module' => 'video_embed_field',
  4075. 'settings' => array(
  4076. 'description' => 1,
  4077. 'description_position' => 'bottom',
  4078. 'video_style' => 'normal',
  4079. ),
  4080. 'type' => 'video_embed_field',
  4081. 'weight' => 1,
  4082. ),
  4083. 'homeblock' => array(
  4084. 'label' => 'hidden',
  4085. 'module' => 'video_embed_field',
  4086. 'settings' => array(
  4087. 'description' => 1,
  4088. 'description_position' => 'bottom',
  4089. 'video_style' => 'normal',
  4090. ),
  4091. 'type' => 'video_embed_field',
  4092. 'weight' => 1,
  4093. ),
  4094. 'teaser' => array(
  4095. 'label' => 'hidden',
  4096. 'module' => 'video_embed_field',
  4097. 'settings' => array(
  4098. 'description' => 1,
  4099. 'description_position' => 'bottom',
  4100. 'video_style' => 'normal',
  4101. ),
  4102. 'type' => 'video_embed_field',
  4103. 'weight' => 1,
  4104. ),
  4105. ),
  4106. 'entity_type' => 'node',
  4107. 'field_name' => 'field_emvideo',
  4108. 'label' => 'Video',
  4109. 'required' => 0,
  4110. 'settings' => array(
  4111. 'allowed_providers' => array(
  4112. 'vimeo' => 'vimeo',
  4113. 'youtube' => 'youtube',
  4114. ),
  4115. 'description_field' => 0,
  4116. 'description_length' => 128,
  4117. 'entity_translation_sync' => FALSE,
  4118. 'user_register_form' => FALSE,
  4119. ),
  4120. 'widget' => array(
  4121. 'active' => 0,
  4122. 'module' => 'video_embed_field',
  4123. 'settings' => array(),
  4124. 'type' => 'video_embed_field_video',
  4125. 'weight' => 3,
  4126. ),
  4127. );
  4128. // Exported field_instance: 'node-page-field_liens'.
  4129. $field_instances['node-page-field_liens'] = array(
  4130. 'bundle' => 'page',
  4131. 'default_value' => NULL,
  4132. 'deleted' => 0,
  4133. 'description' => '',
  4134. 'display' => array(
  4135. 'bookmark' => array(
  4136. 'label' => 'above',
  4137. 'settings' => array(),
  4138. 'type' => 'hidden',
  4139. 'weight' => 0,
  4140. ),
  4141. 'cardbig' => array(
  4142. 'label' => 'above',
  4143. 'settings' => array(),
  4144. 'type' => 'hidden',
  4145. 'weight' => 0,
  4146. ),
  4147. 'cardfull' => array(
  4148. 'label' => 'above',
  4149. 'settings' => array(),
  4150. 'type' => 'hidden',
  4151. 'weight' => 0,
  4152. ),
  4153. 'cardmedium' => array(
  4154. 'label' => 'above',
  4155. 'settings' => array(),
  4156. 'type' => 'hidden',
  4157. 'weight' => 0,
  4158. ),
  4159. 'cardsmall' => array(
  4160. 'label' => 'above',
  4161. 'settings' => array(),
  4162. 'type' => 'hidden',
  4163. 'weight' => 0,
  4164. ),
  4165. 'default' => array(
  4166. 'label' => 'above',
  4167. 'settings' => array(),
  4168. 'type' => 'hidden',
  4169. 'weight' => 3,
  4170. ),
  4171. 'homeblock' => array(
  4172. 'label' => 'hidden',
  4173. 'module' => 'link',
  4174. 'settings' => array(),
  4175. 'type' => 'link_default',
  4176. 'weight' => 4,
  4177. ),
  4178. 'teaser' => array(
  4179. 'label' => 'above',
  4180. 'settings' => array(),
  4181. 'type' => 'hidden',
  4182. 'weight' => 0,
  4183. ),
  4184. ),
  4185. 'entity_type' => 'node',
  4186. 'field_name' => 'field_liens',
  4187. 'label' => 'liens',
  4188. 'required' => 0,
  4189. 'settings' => array(
  4190. 'absolute_url' => 1,
  4191. 'attributes' => array(
  4192. 'class' => '',
  4193. 'configurable_class' => 1,
  4194. 'configurable_title' => 0,
  4195. 'rel' => '',
  4196. 'target' => 'user',
  4197. 'title' => '',
  4198. ),
  4199. 'display' => array(
  4200. 'url_cutoff' => 80,
  4201. ),
  4202. 'enable_tokens' => 1,
  4203. 'entity_translation_sync' => FALSE,
  4204. 'rel_remove' => 'default',
  4205. 'title' => 'required',
  4206. 'title_label_use_field_label' => 0,
  4207. 'title_maxlength' => 128,
  4208. 'title_value' => '',
  4209. 'url' => 0,
  4210. 'user_register_form' => FALSE,
  4211. 'validate_url' => 1,
  4212. ),
  4213. 'widget' => array(
  4214. 'active' => 0,
  4215. 'module' => 'link',
  4216. 'settings' => array(),
  4217. 'type' => 'link_field',
  4218. 'weight' => 9,
  4219. ),
  4220. );
  4221. // Exported field_instance: 'node-page-title_field'.
  4222. $field_instances['node-page-title_field'] = array(
  4223. 'bundle' => 'page',
  4224. 'default_value' => NULL,
  4225. 'deleted' => 0,
  4226. 'description' => 'A field replacing node title.',
  4227. 'display' => array(
  4228. 'bookmark' => array(
  4229. 'label' => 'above',
  4230. 'settings' => array(),
  4231. 'type' => 'hidden',
  4232. 'weight' => 0,
  4233. ),
  4234. 'cardbig' => array(
  4235. 'label' => 'above',
  4236. 'settings' => array(),
  4237. 'type' => 'hidden',
  4238. 'weight' => 0,
  4239. ),
  4240. 'cardfull' => array(
  4241. 'label' => 'above',
  4242. 'settings' => array(),
  4243. 'type' => 'hidden',
  4244. 'weight' => 0,
  4245. ),
  4246. 'cardmedium' => array(
  4247. 'label' => 'above',
  4248. 'settings' => array(),
  4249. 'type' => 'hidden',
  4250. 'weight' => 0,
  4251. ),
  4252. 'cardsmall' => array(
  4253. 'label' => 'above',
  4254. 'settings' => array(),
  4255. 'type' => 'hidden',
  4256. 'weight' => 0,
  4257. ),
  4258. 'default' => array(
  4259. 'label' => 'hidden',
  4260. 'settings' => array(),
  4261. 'type' => 'hidden',
  4262. 'weight' => 5,
  4263. ),
  4264. 'homeblock' => array(
  4265. 'label' => 'hidden',
  4266. 'module' => 'text',
  4267. 'settings' => array(),
  4268. 'type' => 'text_default',
  4269. 'weight' => 3,
  4270. ),
  4271. 'print' => array(
  4272. 'label' => 'above',
  4273. 'settings' => array(),
  4274. 'type' => 'hidden',
  4275. 'weight' => 0,
  4276. ),
  4277. 'teaser' => array(
  4278. 'label' => 'hidden',
  4279. 'module' => 'title',
  4280. 'settings' => array(
  4281. 'title_class' => '',
  4282. 'title_link' => '',
  4283. 'title_style' => '',
  4284. ),
  4285. 'type' => 'title_linked',
  4286. 'weight' => 2,
  4287. ),
  4288. ),
  4289. 'entity_type' => 'node',
  4290. 'field_name' => 'title_field',
  4291. 'label' => 'Titre',
  4292. 'required' => TRUE,
  4293. 'settings' => array(
  4294. 'entity_translation_sync' => FALSE,
  4295. 'hide_label' => array(
  4296. 'entity' => FALSE,
  4297. 'page' => FALSE,
  4298. ),
  4299. 'text_processing' => 0,
  4300. 'user_register_form' => FALSE,
  4301. ),
  4302. 'widget' => array(
  4303. 'module' => 'text',
  4304. 'settings' => array(
  4305. 'size' => 60,
  4306. ),
  4307. 'type' => 'text_textfield',
  4308. 'weight' => 0,
  4309. ),
  4310. );
  4311. // Exported field_instance: 'node-webform-body'.
  4312. $field_instances['node-webform-body'] = array(
  4313. 'bundle' => 'webform',
  4314. 'default_value' => NULL,
  4315. 'deleted' => 0,
  4316. 'description' => '',
  4317. 'display' => array(
  4318. 'bookmark' => array(
  4319. 'label' => 'above',
  4320. 'settings' => array(),
  4321. 'type' => 'hidden',
  4322. 'weight' => 0,
  4323. ),
  4324. 'cardbig' => array(
  4325. 'label' => 'above',
  4326. 'settings' => array(),
  4327. 'type' => 'hidden',
  4328. 'weight' => 0,
  4329. ),
  4330. 'cardfull' => array(
  4331. 'label' => 'above',
  4332. 'settings' => array(),
  4333. 'type' => 'hidden',
  4334. 'weight' => 0,
  4335. ),
  4336. 'cardmedium' => array(
  4337. 'label' => 'above',
  4338. 'settings' => array(),
  4339. 'type' => 'hidden',
  4340. 'weight' => 0,
  4341. ),
  4342. 'cardsmall' => array(
  4343. 'label' => 'above',
  4344. 'settings' => array(),
  4345. 'type' => 'hidden',
  4346. 'weight' => 0,
  4347. ),
  4348. 'default' => array(
  4349. 'label' => 'hidden',
  4350. 'module' => 'text',
  4351. 'settings' => array(),
  4352. 'type' => 'text_default',
  4353. 'weight' => 0,
  4354. ),
  4355. 'homeblock' => array(
  4356. 'label' => 'above',
  4357. 'settings' => array(),
  4358. 'type' => 'hidden',
  4359. 'weight' => 0,
  4360. ),
  4361. 'print' => array(
  4362. 'label' => 'above',
  4363. 'settings' => array(),
  4364. 'type' => 'hidden',
  4365. 'weight' => 0,
  4366. ),
  4367. 'teaser' => array(
  4368. 'label' => 'hidden',
  4369. 'module' => 'text',
  4370. 'settings' => array(
  4371. 'trim_length' => 600,
  4372. ),
  4373. 'type' => 'text_summary_or_trimmed',
  4374. 'weight' => 0,
  4375. ),
  4376. ),
  4377. 'entity_type' => 'node',
  4378. 'field_name' => 'body',
  4379. 'label' => 'Body',
  4380. 'required' => FALSE,
  4381. 'settings' => array(
  4382. 'display_summary' => TRUE,
  4383. 'entity_translation_sync' => FALSE,
  4384. 'text_processing' => 1,
  4385. 'user_register_form' => FALSE,
  4386. ),
  4387. 'widget' => array(
  4388. 'module' => 'text',
  4389. 'settings' => array(
  4390. 'rows' => 20,
  4391. 'summary_rows' => 5,
  4392. ),
  4393. 'type' => 'text_textarea_with_summary',
  4394. 'weight' => 31,
  4395. ),
  4396. );
  4397. // Exported field_instance: 'node-webform-title_field'.
  4398. $field_instances['node-webform-title_field'] = array(
  4399. 'bundle' => 'webform',
  4400. 'default_value' => NULL,
  4401. 'deleted' => 0,
  4402. 'description' => 'A field replacing node title.',
  4403. 'display' => array(
  4404. 'bookmark' => array(
  4405. 'label' => 'above',
  4406. 'settings' => array(),
  4407. 'type' => 'hidden',
  4408. 'weight' => 0,
  4409. ),
  4410. 'cardbig' => array(
  4411. 'label' => 'above',
  4412. 'settings' => array(),
  4413. 'type' => 'hidden',
  4414. 'weight' => 0,
  4415. ),
  4416. 'cardfull' => array(
  4417. 'label' => 'above',
  4418. 'settings' => array(),
  4419. 'type' => 'hidden',
  4420. 'weight' => 0,
  4421. ),
  4422. 'cardmedium' => array(
  4423. 'label' => 'above',
  4424. 'settings' => array(),
  4425. 'type' => 'hidden',
  4426. 'weight' => 0,
  4427. ),
  4428. 'cardsmall' => array(
  4429. 'label' => 'above',
  4430. 'settings' => array(),
  4431. 'type' => 'hidden',
  4432. 'weight' => 0,
  4433. ),
  4434. 'default' => array(
  4435. 'label' => 'above',
  4436. 'settings' => array(),
  4437. 'type' => 'hidden',
  4438. 'weight' => 1,
  4439. ),
  4440. 'homeblock' => array(
  4441. 'label' => 'above',
  4442. 'settings' => array(),
  4443. 'type' => 'hidden',
  4444. 'weight' => 0,
  4445. ),
  4446. 'print' => array(
  4447. 'label' => 'above',
  4448. 'settings' => array(),
  4449. 'type' => 'hidden',
  4450. 'weight' => 0,
  4451. ),
  4452. 'teaser' => array(
  4453. 'label' => 'above',
  4454. 'settings' => array(),
  4455. 'type' => 'hidden',
  4456. 'weight' => 0,
  4457. ),
  4458. ),
  4459. 'entity_type' => 'node',
  4460. 'field_name' => 'title_field',
  4461. 'label' => 'Titre',
  4462. 'required' => TRUE,
  4463. 'settings' => array(
  4464. 'entity_translation_sync' => FALSE,
  4465. 'hide_label' => array(
  4466. 'entity' => FALSE,
  4467. 'page' => FALSE,
  4468. ),
  4469. 'text_processing' => 0,
  4470. 'user_register_form' => FALSE,
  4471. ),
  4472. 'widget' => array(
  4473. 'module' => 'text',
  4474. 'settings' => array(
  4475. 'size' => 60,
  4476. ),
  4477. 'type' => 'text_textfield',
  4478. 'weight' => -5,
  4479. ),
  4480. );
  4481. // Exported field_instance: 'taxonomy_term-company-synonyms_synonym'.
  4482. $field_instances['taxonomy_term-company-synonyms_synonym'] = array(
  4483. 'bundle' => 'company',
  4484. 'default_value' => NULL,
  4485. 'deleted' => 0,
  4486. 'description' => '',
  4487. 'display' => array(
  4488. 'default' => array(
  4489. 'label' => 'above',
  4490. 'module' => 'text',
  4491. 'settings' => array(),
  4492. 'type' => 'text_default',
  4493. 'weight' => 0,
  4494. ),
  4495. ),
  4496. 'entity_type' => 'taxonomy_term',
  4497. 'field_name' => 'synonyms_synonym',
  4498. 'label' => 'Synonyms',
  4499. 'required' => FALSE,
  4500. 'settings' => array(
  4501. 'entity_translation_sync' => FALSE,
  4502. 'text_processing' => 0,
  4503. 'user_register_form' => FALSE,
  4504. ),
  4505. 'widget' => array(
  4506. 'module' => 'text',
  4507. 'settings' => array(
  4508. 'size' => 60,
  4509. ),
  4510. 'type' => 'text_textfield',
  4511. 'weight' => 31,
  4512. ),
  4513. );
  4514. // Exported field_instance:
  4515. // 'taxonomy_term-onthologie-field_used_on_advanced_search'.
  4516. $field_instances['taxonomy_term-onthologie-field_used_on_advanced_search'] = array(
  4517. 'bundle' => 'onthologie',
  4518. 'default_value' => array(
  4519. 0 => array(
  4520. 'value' => 0,
  4521. ),
  4522. ),
  4523. 'deleted' => 0,
  4524. 'description' => '',
  4525. 'display' => array(
  4526. 'default' => array(
  4527. 'label' => 'inline',
  4528. 'module' => 'list',
  4529. 'settings' => array(),
  4530. 'type' => 'list_default',
  4531. 'weight' => 0,
  4532. ),
  4533. ),
  4534. 'entity_type' => 'taxonomy_term',
  4535. 'field_name' => 'field_used_on_advanced_search',
  4536. 'label' => 'Display term on advanced search.',
  4537. 'required' => 0,
  4538. 'settings' => array(
  4539. 'entity_translation_sync' => FALSE,
  4540. 'user_register_form' => FALSE,
  4541. ),
  4542. 'widget' => array(
  4543. 'active' => 1,
  4544. 'module' => 'options',
  4545. 'settings' => array(
  4546. 'display_label' => 1,
  4547. ),
  4548. 'type' => 'options_onoff',
  4549. 'weight' => 1,
  4550. ),
  4551. );
  4552. // Exported field_instance: 'taxonomy_term-onthologie-name_field'.
  4553. $field_instances['taxonomy_term-onthologie-name_field'] = array(
  4554. 'bundle' => 'onthologie',
  4555. 'default_value' => NULL,
  4556. 'deleted' => 0,
  4557. 'description' => 'A field replacing taxonomy term name.',
  4558. 'display' => array(
  4559. 'default' => array(
  4560. 'label' => 'above',
  4561. 'settings' => array(),
  4562. 'type' => 'hidden',
  4563. 'weight' => 3,
  4564. ),
  4565. 'search_index' => array(
  4566. 'label' => 'hidden',
  4567. 'module' => 'text',
  4568. 'settings' => array(),
  4569. 'type' => 'text_default',
  4570. 'weight' => 0,
  4571. ),
  4572. ),
  4573. 'entity_type' => 'taxonomy_term',
  4574. 'field_name' => 'name_field',
  4575. 'label' => 'Nom',
  4576. 'required' => TRUE,
  4577. 'settings' => array(
  4578. 'entity_translation_sync' => FALSE,
  4579. 'hide_label' => array(
  4580. 'entity' => FALSE,
  4581. 'page' => FALSE,
  4582. ),
  4583. 'text_processing' => 0,
  4584. 'user_register_form' => FALSE,
  4585. ),
  4586. 'widget' => array(
  4587. 'module' => 'text',
  4588. 'settings' => array(
  4589. 'size' => 60,
  4590. ),
  4591. 'type' => 'text_textfield',
  4592. 'weight' => 0,
  4593. ),
  4594. );
  4595. // Exported field_instance: 'taxonomy_term-onthologie-synonyms_synonym'.
  4596. $field_instances['taxonomy_term-onthologie-synonyms_synonym'] = array(
  4597. 'bundle' => 'onthologie',
  4598. 'default_value' => NULL,
  4599. 'deleted' => 0,
  4600. 'description' => '',
  4601. 'display' => array(
  4602. 'default' => array(
  4603. 'label' => 'above',
  4604. 'module' => 'text',
  4605. 'settings' => array(),
  4606. 'type' => 'text_default',
  4607. 'weight' => 1,
  4608. ),
  4609. 'search_index' => array(
  4610. 'label' => 'hidden',
  4611. 'module' => 'text',
  4612. 'settings' => array(),
  4613. 'type' => 'text_default',
  4614. 'weight' => 1,
  4615. ),
  4616. ),
  4617. 'entity_type' => 'taxonomy_term',
  4618. 'field_name' => 'synonyms_synonym',
  4619. 'label' => 'Synonyms',
  4620. 'required' => 0,
  4621. 'settings' => array(
  4622. 'entity_translation_sync' => FALSE,
  4623. 'text_processing' => 0,
  4624. 'user_register_form' => FALSE,
  4625. ),
  4626. 'widget' => array(
  4627. 'active' => 1,
  4628. 'module' => 'text',
  4629. 'settings' => array(
  4630. 'size' => 60,
  4631. ),
  4632. 'type' => 'text_textfield',
  4633. 'weight' => 5,
  4634. ),
  4635. );
  4636. // Exported field_instance: 'taxonomy_term-tag_libres-name_field'.
  4637. $field_instances['taxonomy_term-tag_libres-name_field'] = array(
  4638. 'bundle' => 'tag_libres',
  4639. 'default_value' => NULL,
  4640. 'deleted' => 0,
  4641. 'description' => '',
  4642. 'display' => array(
  4643. 'default' => array(
  4644. 'label' => 'above',
  4645. 'settings' => array(),
  4646. 'type' => 'hidden',
  4647. 'weight' => 1,
  4648. ),
  4649. ),
  4650. 'entity_type' => 'taxonomy_term',
  4651. 'field_name' => 'name_field',
  4652. 'label' => 'Nom',
  4653. 'required' => 1,
  4654. 'settings' => array(
  4655. 'entity_translation_sync' => FALSE,
  4656. 'hide_label' => array(
  4657. 'entity' => 'entity',
  4658. 'page' => 'page',
  4659. ),
  4660. 'text_processing' => 0,
  4661. 'user_register_form' => FALSE,
  4662. ),
  4663. 'widget' => array(
  4664. 'active' => 1,
  4665. 'module' => 'text',
  4666. 'settings' => array(
  4667. 'size' => 60,
  4668. ),
  4669. 'type' => 'text_textfield',
  4670. 'weight' => -5,
  4671. ),
  4672. );
  4673. // Exported field_instance: 'taxonomy_term-tag_libres-synonyms_synonym'.
  4674. $field_instances['taxonomy_term-tag_libres-synonyms_synonym'] = array(
  4675. 'bundle' => 'tag_libres',
  4676. 'default_value' => NULL,
  4677. 'deleted' => 0,
  4678. 'description' => '',
  4679. 'display' => array(
  4680. 'default' => array(
  4681. 'label' => 'above',
  4682. 'module' => 'text',
  4683. 'settings' => array(),
  4684. 'type' => 'text_default',
  4685. 'weight' => 0,
  4686. ),
  4687. ),
  4688. 'entity_type' => 'taxonomy_term',
  4689. 'field_name' => 'synonyms_synonym',
  4690. 'label' => 'Synonyms',
  4691. 'required' => FALSE,
  4692. 'settings' => array(
  4693. 'entity_translation_sync' => FALSE,
  4694. 'text_processing' => 0,
  4695. 'user_register_form' => FALSE,
  4696. ),
  4697. 'widget' => array(
  4698. 'module' => 'text',
  4699. 'settings' => array(
  4700. 'size' => 60,
  4701. ),
  4702. 'type' => 'text_textfield',
  4703. 'weight' => 31,
  4704. ),
  4705. );
  4706. // Translatables
  4707. // Included for use with string extractors like potx.
  4708. t('"http://" will be added automaticly.');
  4709. t('<b>/!\\ Attention</b> VOus ne pouvez pas ajouter de nouveaux tag ici.<br/>
  4710. Vous devez avant d\'utiliser un nouveau tag le créer <a href="/admin/structure/taxonomy/tag_libres/add"><b>ici</b></a>');
  4711. t('A field replacing node title.');
  4712. t('A field replacing taxonomy term name.');
  4713. t('Adresse');
  4714. t('Authored on');
  4715. t('Bandeau');
  4716. t('Body');
  4717. t('Brève(s) liée(s)');
  4718. t('Department');
  4719. t('Description');
  4720. t('Display term on advanced search.');
  4721. t('Distributor');
  4722. t('Email');
  4723. t('Famille');
  4724. t('Fichiers joints');
  4725. t('Identifiant');
  4726. t('Image');
  4727. t('Infos from company');
  4728. t('Localisation');
  4729. t('Manufacturer');
  4730. t('Materiau(x) lié(s)');
  4731. t('Materio speach');
  4732. t('Mémo');
  4733. t('Name');
  4734. t('Nature Titre');
  4735. t('Nom');
  4736. t('Note');
  4737. t('Onthologie');
  4738. t('Phone');
  4739. t('Référence Materio');
  4740. t('Synonyms');
  4741. t('Tags libres');
  4742. t('Titre');
  4743. t('Video');
  4744. t('Workflow State');
  4745. t('liens');
  4746. t('source');
  4747. t('video');
  4748. t('website');
  4749. return $field_instances;
  4750. }