materio_content_types.features.field.inc 155 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935
  1. <?php
  2. /**
  3. * @file
  4. * materio_content_types.features.field.inc
  5. */
  6. /**
  7. * Implements hook_field_default_fields().
  8. */
  9. function materio_content_types_field_default_fields() {
  10. $fields = array();
  11. // Exported field: 'node-breve-body'.
  12. $fields['node-breve-body'] = array(
  13. 'field_config' => array(
  14. 'active' => '1',
  15. 'cardinality' => '1',
  16. 'deleted' => '0',
  17. 'entity_types' => array(
  18. 0 => 'node',
  19. ),
  20. 'field_name' => 'body',
  21. 'field_permissions' => array(
  22. 'type' => '0',
  23. ),
  24. 'foreign keys' => array(
  25. 'format' => array(
  26. 'columns' => array(
  27. 'format' => 'format',
  28. ),
  29. 'table' => 'filter_format',
  30. ),
  31. ),
  32. 'indexes' => array(
  33. 'format' => array(
  34. 0 => 'format',
  35. ),
  36. ),
  37. 'locked' => '0',
  38. 'module' => 'text',
  39. 'settings' => array(
  40. 'entity_translation_sync' => FALSE,
  41. 'profile2_private' => FALSE,
  42. ),
  43. 'translatable' => '1',
  44. 'type' => 'text_with_summary',
  45. ),
  46. 'field_instance' => array(
  47. 'bundle' => 'breve',
  48. 'default_value' => NULL,
  49. 'deleted' => '0',
  50. 'description' => '',
  51. 'display' => array(
  52. 'bookmark' => array(
  53. 'label' => 'above',
  54. 'settings' => array(),
  55. 'type' => 'hidden',
  56. 'weight' => '9',
  57. ),
  58. 'cardbig' => array(
  59. 'label' => 'hidden',
  60. 'module' => 'text',
  61. 'settings' => array(),
  62. 'type' => 'text_default',
  63. 'weight' => '5',
  64. ),
  65. 'cardfull' => array(
  66. 'label' => 'hidden',
  67. 'module' => 'text',
  68. 'settings' => array(),
  69. 'type' => 'text_default',
  70. 'weight' => '12',
  71. ),
  72. 'cardmedium' => array(
  73. 'label' => 'hidden',
  74. 'module' => 'text',
  75. 'settings' => array(),
  76. 'type' => 'text_default',
  77. 'weight' => '3',
  78. ),
  79. 'cardsmall' => array(
  80. 'label' => 'above',
  81. 'settings' => array(),
  82. 'type' => 'hidden',
  83. 'weight' => '9',
  84. ),
  85. 'default' => array(
  86. 'label' => 'hidden',
  87. 'module' => 'text',
  88. 'settings' => array(),
  89. 'type' => 'text_default',
  90. 'weight' => '1',
  91. ),
  92. 'print' => array(
  93. 'label' => 'above',
  94. 'settings' => array(),
  95. 'type' => 'hidden',
  96. 'weight' => 0,
  97. ),
  98. 'teaser' => array(
  99. 'label' => 'hidden',
  100. 'settings' => array(),
  101. 'type' => 'hidden',
  102. 'weight' => '3',
  103. ),
  104. ),
  105. 'entity_type' => 'node',
  106. 'field_name' => 'body',
  107. 'label' => 'Body',
  108. 'required' => FALSE,
  109. 'settings' => array(
  110. 'display_summary' => TRUE,
  111. 'entity_translation_sync' => FALSE,
  112. 'text_processing' => 1,
  113. 'user_register_form' => FALSE,
  114. ),
  115. 'widget' => array(
  116. 'module' => 'text',
  117. 'settings' => array(
  118. 'rows' => 20,
  119. 'summary_rows' => 5,
  120. ),
  121. 'type' => 'text_textarea_with_summary',
  122. 'weight' => '-4',
  123. ),
  124. ),
  125. );
  126. // Exported field: 'node-breve-field_authored_on'.
  127. $fields['node-breve-field_authored_on'] = array(
  128. 'field_config' => array(
  129. 'active' => '1',
  130. 'cardinality' => '1',
  131. 'deleted' => '0',
  132. 'entity_types' => array(),
  133. 'field_name' => 'field_authored_on',
  134. 'field_permissions' => array(
  135. 'type' => '0',
  136. ),
  137. 'foreign keys' => array(),
  138. 'indexes' => array(),
  139. 'locked' => '0',
  140. 'module' => 'computed_field',
  141. 'settings' => array(
  142. 'code' => '//dsm($entity, \'$entity\');
  143. $entity_field[0][\'value\'] = format_date($entity->created, \'breves\');',
  144. 'database' => array(
  145. 'data_default' => '',
  146. 'data_index' => 0,
  147. 'data_length' => '32',
  148. 'data_not_NULL' => 0,
  149. 'data_precision' => '10',
  150. 'data_scale' => '2',
  151. 'data_size' => 'normal',
  152. 'data_type' => 'varchar',
  153. ),
  154. 'display_format' => '$display_output = $entity_field_item[\'value\'];',
  155. 'entity_translation_sync' => FALSE,
  156. 'profile2_private' => FALSE,
  157. 'store' => 0,
  158. ),
  159. 'translatable' => '0',
  160. 'type' => 'computed',
  161. ),
  162. 'field_instance' => array(
  163. 'bundle' => 'breve',
  164. 'default_value' => NULL,
  165. 'deleted' => '0',
  166. 'description' => '',
  167. 'display' => array(
  168. 'bookmark' => array(
  169. 'label' => 'above',
  170. 'settings' => array(),
  171. 'type' => 'hidden',
  172. 'weight' => 0,
  173. ),
  174. 'cardbig' => array(
  175. 'label' => 'hidden',
  176. 'module' => 'computed_field',
  177. 'settings' => array(),
  178. 'type' => 'computed_field_unsanitized',
  179. 'weight' => '5',
  180. ),
  181. 'cardfull' => array(
  182. 'label' => 'hidden',
  183. 'module' => 'computed_field',
  184. 'settings' => array(),
  185. 'type' => 'computed_field_unsanitized',
  186. 'weight' => '13',
  187. ),
  188. 'cardmedium' => array(
  189. 'label' => 'hidden',
  190. 'module' => 'computed_field',
  191. 'settings' => array(),
  192. 'type' => 'computed_field_unsanitized',
  193. 'weight' => '3',
  194. ),
  195. 'cardsmall' => array(
  196. 'label' => 'hidden',
  197. 'module' => 'computed_field',
  198. 'settings' => array(),
  199. 'type' => 'computed_field_plain',
  200. 'weight' => '2',
  201. ),
  202. 'default' => array(
  203. 'label' => 'above',
  204. 'module' => 'computed_field',
  205. 'settings' => array(),
  206. 'type' => 'computed_field_plain',
  207. 'weight' => 10,
  208. ),
  209. 'print' => array(
  210. 'label' => 'above',
  211. 'settings' => array(),
  212. 'type' => 'hidden',
  213. 'weight' => 0,
  214. ),
  215. 'teaser' => array(
  216. 'label' => 'hidden',
  217. 'module' => 'computed_field',
  218. 'settings' => array(),
  219. 'type' => 'computed_field_unsanitized',
  220. 'weight' => '1',
  221. ),
  222. ),
  223. 'entity_type' => 'node',
  224. 'field_name' => 'field_authored_on',
  225. 'label' => 'Authored on',
  226. 'required' => 0,
  227. 'settings' => array(
  228. 'entity_translation_sync' => FALSE,
  229. 'user_register_form' => FALSE,
  230. ),
  231. 'widget' => array(
  232. 'active' => 0,
  233. 'module' => 'field_extrawidgets',
  234. 'settings' => array(
  235. 'display_empty' => 0,
  236. 'formatter' => '',
  237. 'formatter_settings' => array(),
  238. ),
  239. 'type' => 'field_extrawidgets_read_only',
  240. 'weight' => '21',
  241. ),
  242. ),
  243. );
  244. // Exported field: 'node-breve-field_materiau_ref'.
  245. $fields['node-breve-field_materiau_ref'] = array(
  246. 'field_config' => array(
  247. 'active' => '1',
  248. 'cardinality' => '-1',
  249. 'deleted' => '0',
  250. 'entity_types' => array(),
  251. 'field_name' => 'field_materiau_ref',
  252. 'field_permissions' => array(
  253. 'type' => '2',
  254. ),
  255. 'foreign keys' => array(
  256. 'node' => array(
  257. 'columns' => array(
  258. 'target_id' => 'nid',
  259. ),
  260. 'table' => 'node',
  261. ),
  262. ),
  263. 'indexes' => array(
  264. 'target_id' => array(
  265. 0 => 'target_id',
  266. ),
  267. ),
  268. 'locked' => '0',
  269. 'module' => 'entityreference',
  270. 'settings' => array(
  271. 'entity_translation_sync' => FALSE,
  272. 'handler' => 'views',
  273. 'handler_settings' => array(
  274. 'behaviors' => array(
  275. 'views-select-list' => array(
  276. 'status' => 0,
  277. ),
  278. ),
  279. 'view' => array(
  280. 'args' => array(),
  281. 'display_name' => 'entityreference_1',
  282. 'view_name' => 'entity_reference_materiaux_breves',
  283. ),
  284. ),
  285. 'handler_submit' => 'Change handler',
  286. 'profile2_private' => FALSE,
  287. 'target_type' => 'node',
  288. ),
  289. 'translatable' => '0',
  290. 'type' => 'entityreference',
  291. ),
  292. 'field_instance' => array(
  293. 'bundle' => 'breve',
  294. 'default_value' => NULL,
  295. 'deleted' => '0',
  296. 'description' => '',
  297. 'display' => array(
  298. 'bookmark' => array(
  299. 'label' => 'above',
  300. 'settings' => array(),
  301. 'type' => 'hidden',
  302. 'weight' => '7',
  303. ),
  304. 'cardbig' => array(
  305. 'label' => 'above',
  306. 'module' => 'entityreference',
  307. 'settings' => array(
  308. 'link' => FALSE,
  309. ),
  310. 'type' => 'entityreference_label',
  311. 'weight' => '9',
  312. ),
  313. 'cardfull' => array(
  314. 'label' => 'above',
  315. 'module' => 'entityreference',
  316. 'settings' => array(
  317. 'link' => FALSE,
  318. ),
  319. 'type' => 'entityreference_label',
  320. 'weight' => '14',
  321. ),
  322. 'cardmedium' => array(
  323. 'label' => 'above',
  324. 'module' => 'entityreference',
  325. 'settings' => array(
  326. 'link' => FALSE,
  327. ),
  328. 'type' => 'entityreference_label',
  329. 'weight' => '8',
  330. ),
  331. 'cardsmall' => array(
  332. 'label' => 'above',
  333. 'settings' => array(),
  334. 'type' => 'hidden',
  335. 'weight' => '8',
  336. ),
  337. 'default' => array(
  338. 'label' => 'above',
  339. 'settings' => array(),
  340. 'type' => 'hidden',
  341. 'weight' => '8',
  342. ),
  343. 'print' => array(
  344. 'label' => 'above',
  345. 'settings' => array(),
  346. 'type' => 'hidden',
  347. 'weight' => 0,
  348. ),
  349. 'teaser' => array(
  350. 'label' => 'above',
  351. 'settings' => array(),
  352. 'type' => 'hidden',
  353. 'weight' => '7',
  354. ),
  355. ),
  356. 'entity_type' => 'node',
  357. 'field_name' => 'field_materiau_ref',
  358. 'label' => 'Materiau(x) lié(s)',
  359. 'required' => 0,
  360. 'settings' => array(
  361. 'entity_translation_sync' => FALSE,
  362. 'user_register_form' => FALSE,
  363. ),
  364. 'widget' => array(
  365. 'active' => 1,
  366. 'module' => 'entityreference',
  367. 'settings' => array(
  368. 'match_operator' => 'CONTAINS',
  369. 'path' => '',
  370. 'size' => '60',
  371. ),
  372. 'type' => 'entityreference_autocomplete',
  373. 'weight' => '1',
  374. ),
  375. ),
  376. );
  377. // Exported field: 'node-breve-field_memo'.
  378. $fields['node-breve-field_memo'] = array(
  379. 'field_config' => array(
  380. 'active' => '1',
  381. 'cardinality' => '1',
  382. 'deleted' => '0',
  383. 'entity_types' => array(),
  384. 'field_name' => 'field_memo',
  385. 'field_permissions' => array(
  386. 'type' => '2',
  387. ),
  388. 'foreign keys' => array(
  389. 'format' => array(
  390. 'columns' => array(
  391. 'format' => 'format',
  392. ),
  393. 'table' => 'filter_format',
  394. ),
  395. ),
  396. 'indexes' => array(
  397. 'format' => array(
  398. 0 => 'format',
  399. ),
  400. ),
  401. 'locked' => '0',
  402. 'module' => 'text',
  403. 'settings' => array(
  404. 'entity_translation_sync' => FALSE,
  405. 'profile2_private' => TRUE,
  406. ),
  407. 'translatable' => '0',
  408. 'type' => 'text_long',
  409. ),
  410. 'field_instance' => array(
  411. 'bundle' => 'breve',
  412. 'default_value' => NULL,
  413. 'deleted' => '0',
  414. 'description' => '',
  415. 'display' => array(
  416. 'bookmark' => array(
  417. 'label' => 'above',
  418. 'settings' => array(),
  419. 'type' => 'hidden',
  420. 'weight' => '8',
  421. ),
  422. 'cardbig' => array(
  423. 'label' => 'above',
  424. 'settings' => array(),
  425. 'type' => 'hidden',
  426. 'weight' => '7',
  427. ),
  428. 'cardfull' => array(
  429. 'label' => 'above',
  430. 'settings' => array(),
  431. 'type' => 'hidden',
  432. 'weight' => '9',
  433. ),
  434. 'cardmedium' => array(
  435. 'label' => 'above',
  436. 'settings' => array(),
  437. 'type' => 'hidden',
  438. 'weight' => '9',
  439. ),
  440. 'cardsmall' => array(
  441. 'label' => 'above',
  442. 'settings' => array(),
  443. 'type' => 'hidden',
  444. 'weight' => '6',
  445. ),
  446. 'default' => array(
  447. 'label' => 'above',
  448. 'settings' => array(),
  449. 'type' => 'hidden',
  450. 'weight' => '9',
  451. ),
  452. 'print' => array(
  453. 'label' => 'above',
  454. 'settings' => array(),
  455. 'type' => 'hidden',
  456. 'weight' => 0,
  457. ),
  458. 'teaser' => array(
  459. 'label' => 'above',
  460. 'settings' => array(),
  461. 'type' => 'hidden',
  462. 'weight' => '8',
  463. ),
  464. ),
  465. 'entity_type' => 'node',
  466. 'field_name' => 'field_memo',
  467. 'label' => 'Mémo',
  468. 'required' => 0,
  469. 'settings' => array(
  470. 'entity_translation_sync' => FALSE,
  471. 'text_processing' => '0',
  472. 'user_register_form' => FALSE,
  473. ),
  474. 'widget' => array(
  475. 'active' => 1,
  476. 'module' => 'text',
  477. 'settings' => array(
  478. 'rows' => '10',
  479. ),
  480. 'type' => 'text_textarea',
  481. 'weight' => '4',
  482. ),
  483. ),
  484. );
  485. // Exported field: 'node-breve-field_onthologie'.
  486. $fields['node-breve-field_onthologie'] = array(
  487. 'field_config' => array(
  488. 'active' => '1',
  489. 'cardinality' => '-1',
  490. 'deleted' => '0',
  491. 'entity_types' => array(),
  492. 'field_name' => 'field_onthologie',
  493. 'field_permissions' => array(
  494. 'type' => '0',
  495. ),
  496. 'foreign keys' => array(
  497. 'tid' => array(
  498. 'columns' => array(
  499. 'tid' => 'tid',
  500. ),
  501. 'table' => 'taxonomy_term_data',
  502. ),
  503. ),
  504. 'indexes' => array(
  505. 'tid' => array(
  506. 0 => 'tid',
  507. ),
  508. ),
  509. 'locked' => '0',
  510. 'module' => 'taxonomy',
  511. 'settings' => array(
  512. 'allowed_values' => array(
  513. 0 => array(
  514. 'vocabulary' => 'onthologie',
  515. 'parent' => '0',
  516. 'depth' => '',
  517. ),
  518. ),
  519. 'entity_translation_sync' => FALSE,
  520. 'options_list_callback' => 'i18n_taxonomy_allowed_values',
  521. 'profile2_private' => FALSE,
  522. ),
  523. 'translatable' => '0',
  524. 'type' => 'taxonomy_term_reference',
  525. ),
  526. 'field_instance' => array(
  527. 'bundle' => 'breve',
  528. 'default_value' => NULL,
  529. 'deleted' => '0',
  530. 'description' => '',
  531. 'display' => array(
  532. 'bookmark' => array(
  533. 'label' => 'above',
  534. 'settings' => array(),
  535. 'type' => 'hidden',
  536. 'weight' => '4',
  537. ),
  538. 'cardbig' => array(
  539. 'label' => 'above',
  540. 'settings' => array(),
  541. 'type' => 'hidden',
  542. 'weight' => '5',
  543. ),
  544. 'cardfull' => array(
  545. 'label' => 'above',
  546. 'settings' => array(),
  547. 'type' => 'hidden',
  548. 'weight' => '4',
  549. ),
  550. 'cardmedium' => array(
  551. 'label' => 'above',
  552. 'settings' => array(),
  553. 'type' => 'hidden',
  554. 'weight' => '5',
  555. ),
  556. 'cardsmall' => array(
  557. 'label' => 'above',
  558. 'settings' => array(),
  559. 'type' => 'hidden',
  560. 'weight' => '4',
  561. ),
  562. 'default' => array(
  563. 'label' => 'above',
  564. 'settings' => array(),
  565. 'type' => 'hidden',
  566. 'weight' => '4',
  567. ),
  568. 'print' => array(
  569. 'label' => 'above',
  570. 'settings' => array(),
  571. 'type' => 'hidden',
  572. 'weight' => 0,
  573. ),
  574. 'teaser' => array(
  575. 'label' => 'above',
  576. 'settings' => array(),
  577. 'type' => 'hidden',
  578. 'weight' => '4',
  579. ),
  580. ),
  581. 'entity_type' => 'node',
  582. 'field_name' => 'field_onthologie',
  583. 'label' => 'Onthologie',
  584. 'required' => 0,
  585. 'settings' => array(
  586. 'entity_translation_sync' => FALSE,
  587. 'user_register_form' => FALSE,
  588. ),
  589. 'widget' => array(
  590. 'active' => 1,
  591. 'module' => 'term_reference_tree',
  592. 'settings' => array(
  593. 'cascading_selection' => 0,
  594. 'filter_view' => '',
  595. 'leaves_only' => 0,
  596. 'max_depth' => '',
  597. 'parent_term_id' => '',
  598. 'select_parents' => 1,
  599. 'start_minimized' => 1,
  600. 'starting_depth' => '2',
  601. 'token_display' => '',
  602. 'track_list' => 1,
  603. 'track_list_order' => 1,
  604. ),
  605. 'type' => 'term_reference_tree',
  606. 'weight' => '18',
  607. ),
  608. ),
  609. );
  610. // Exported field: 'node-breve-field_source'.
  611. $fields['node-breve-field_source'] = array(
  612. 'field_config' => array(
  613. 'active' => '1',
  614. 'cardinality' => '1',
  615. 'deleted' => '0',
  616. 'entity_types' => array(),
  617. 'field_name' => 'field_source',
  618. 'field_permissions' => array(
  619. 'type' => '0',
  620. ),
  621. 'foreign keys' => array(),
  622. 'indexes' => array(),
  623. 'locked' => '0',
  624. 'module' => 'link',
  625. 'settings' => array(
  626. 'attributes' => array(
  627. 'class' => '',
  628. 'rel' => '',
  629. 'target' => 'default',
  630. ),
  631. 'display' => array(
  632. 'url_cutoff' => 80,
  633. ),
  634. 'enable_tokens' => 1,
  635. 'entity_translation_sync' => FALSE,
  636. 'profile2_private' => FALSE,
  637. 'title' => 'optional',
  638. 'title_maxlength' => 128,
  639. 'title_value' => '',
  640. 'url' => 0,
  641. ),
  642. 'translatable' => '0',
  643. 'type' => 'link_field',
  644. ),
  645. 'field_instance' => array(
  646. 'bundle' => 'breve',
  647. 'default_value' => NULL,
  648. 'deleted' => '0',
  649. 'description' => '',
  650. 'display' => array(
  651. 'bookmark' => array(
  652. 'label' => 'above',
  653. 'settings' => array(),
  654. 'type' => 'hidden',
  655. 'weight' => '6',
  656. ),
  657. 'cardbig' => array(
  658. 'label' => 'above',
  659. 'module' => 'link',
  660. 'settings' => array(),
  661. 'type' => 'link_default',
  662. 'weight' => '8',
  663. ),
  664. 'cardfull' => array(
  665. 'label' => 'inline',
  666. 'module' => 'link',
  667. 'settings' => array(),
  668. 'type' => 'link_default',
  669. 'weight' => '13',
  670. ),
  671. 'cardmedium' => array(
  672. 'label' => 'above',
  673. 'module' => 'link',
  674. 'settings' => array(),
  675. 'type' => 'link_default',
  676. 'weight' => '7',
  677. ),
  678. 'cardsmall' => array(
  679. 'label' => 'above',
  680. 'settings' => array(),
  681. 'type' => 'hidden',
  682. 'weight' => '7',
  683. ),
  684. 'default' => array(
  685. 'label' => 'above',
  686. 'settings' => array(),
  687. 'type' => 'hidden',
  688. 'weight' => '7',
  689. ),
  690. 'print' => array(
  691. 'label' => 'above',
  692. 'settings' => array(),
  693. 'type' => 'hidden',
  694. 'weight' => 0,
  695. ),
  696. 'teaser' => array(
  697. 'label' => 'above',
  698. 'settings' => array(),
  699. 'type' => 'hidden',
  700. 'weight' => '10',
  701. ),
  702. ),
  703. 'entity_type' => 'node',
  704. 'field_name' => 'field_source',
  705. 'label' => 'source',
  706. 'required' => 0,
  707. 'settings' => array(
  708. 'attributes' => array(
  709. 'class' => '',
  710. 'configurable_title' => 0,
  711. 'rel' => '',
  712. 'target' => '_blank',
  713. 'title' => '',
  714. ),
  715. 'display' => array(
  716. 'url_cutoff' => '80',
  717. ),
  718. 'enable_tokens' => 1,
  719. 'entity_translation_sync' => FALSE,
  720. 'rel_remove' => 'default',
  721. 'title' => 'none',
  722. 'title_maxlength' => '128',
  723. 'title_value' => '',
  724. 'url' => 0,
  725. 'user_register_form' => FALSE,
  726. 'validate_url' => 1,
  727. ),
  728. 'widget' => array(
  729. 'active' => 0,
  730. 'module' => 'link',
  731. 'settings' => array(),
  732. 'type' => 'link_field',
  733. 'weight' => '-2',
  734. ),
  735. ),
  736. );
  737. // Exported field: 'node-breve-field_tags_libres'.
  738. $fields['node-breve-field_tags_libres'] = array(
  739. 'field_config' => array(
  740. 'active' => '1',
  741. 'cardinality' => '-1',
  742. 'deleted' => '0',
  743. 'entity_types' => array(),
  744. 'field_name' => 'field_tags_libres',
  745. 'field_permissions' => array(
  746. 'type' => '0',
  747. ),
  748. 'foreign keys' => array(
  749. 'tid' => array(
  750. 'columns' => array(
  751. 'tid' => 'tid',
  752. ),
  753. 'table' => 'taxonomy_term_data',
  754. ),
  755. ),
  756. 'indexes' => array(
  757. 'tid' => array(
  758. 0 => 'tid',
  759. ),
  760. ),
  761. 'locked' => '0',
  762. 'module' => 'taxonomy',
  763. 'settings' => array(
  764. 'allowed_values' => array(
  765. 0 => array(
  766. 'vocabulary' => 'tag_libres',
  767. 'parent' => '0',
  768. ),
  769. ),
  770. 'entity_translation_sync' => FALSE,
  771. 'options_list_callback' => 'i18n_taxonomy_allowed_values',
  772. 'profile2_private' => FALSE,
  773. ),
  774. 'translatable' => '0',
  775. 'type' => 'taxonomy_term_reference',
  776. ),
  777. 'field_instance' => array(
  778. 'bundle' => 'breve',
  779. 'default_value' => NULL,
  780. 'deleted' => '0',
  781. 'description' => '',
  782. 'display' => array(
  783. 'bookmark' => array(
  784. 'label' => 'above',
  785. 'settings' => array(),
  786. 'type' => 'hidden',
  787. 'weight' => '5',
  788. ),
  789. 'cardbig' => array(
  790. 'label' => 'above',
  791. 'settings' => array(),
  792. 'type' => 'hidden',
  793. 'weight' => '4',
  794. ),
  795. 'cardfull' => array(
  796. 'label' => 'above',
  797. 'settings' => array(),
  798. 'type' => 'hidden',
  799. 'weight' => '5',
  800. ),
  801. 'cardmedium' => array(
  802. 'label' => 'above',
  803. 'settings' => array(),
  804. 'type' => 'hidden',
  805. 'weight' => '6',
  806. ),
  807. 'cardsmall' => array(
  808. 'label' => 'above',
  809. 'settings' => array(),
  810. 'type' => 'hidden',
  811. 'weight' => '5',
  812. ),
  813. 'default' => array(
  814. 'label' => 'above',
  815. 'settings' => array(),
  816. 'type' => 'hidden',
  817. 'weight' => '5',
  818. ),
  819. 'print' => array(
  820. 'label' => 'above',
  821. 'settings' => array(),
  822. 'type' => 'hidden',
  823. 'weight' => 0,
  824. ),
  825. 'teaser' => array(
  826. 'label' => 'above',
  827. 'settings' => array(),
  828. 'type' => 'hidden',
  829. 'weight' => '5',
  830. ),
  831. ),
  832. 'entity_type' => 'node',
  833. 'field_name' => 'field_tags_libres',
  834. 'label' => 'Tags libres',
  835. 'required' => 0,
  836. 'settings' => array(
  837. 'entity_translation_sync' => FALSE,
  838. 'user_register_form' => FALSE,
  839. ),
  840. 'widget' => array(
  841. 'active' => 1,
  842. 'module' => 'autocomplete_deluxe',
  843. 'settings' => array(
  844. 'autocomplete_deluxe_path' => 'autocomplete_deluxe/taxonomy',
  845. 'content_taxonomy_autocomplete_new_terms' => 'allow',
  846. 'size' => '60',
  847. ),
  848. 'type' => 'autocomplete_deluxe_taxonomy',
  849. 'weight' => '20',
  850. ),
  851. ),
  852. );
  853. // Exported field: 'node-breve-field_video_filter'.
  854. $fields['node-breve-field_video_filter'] = array(
  855. 'field_config' => array(
  856. 'active' => '1',
  857. 'cardinality' => '-1',
  858. 'deleted' => '0',
  859. 'entity_types' => array(),
  860. 'field_name' => 'field_video_filter',
  861. 'field_permissions' => array(
  862. 'type' => '0',
  863. ),
  864. 'foreign keys' => array(),
  865. 'indexes' => array(
  866. 'height' => array(
  867. 0 => 'height',
  868. ),
  869. 'width' => array(
  870. 0 => 'width',
  871. ),
  872. ),
  873. 'locked' => '0',
  874. 'module' => 'video_filter_field',
  875. 'settings' => array(
  876. 'entity_translation_sync' => FALSE,
  877. 'profile2_private' => FALSE,
  878. ),
  879. 'translatable' => '0',
  880. 'type' => 'video_filter',
  881. ),
  882. 'field_instance' => array(
  883. 'bundle' => 'breve',
  884. 'default_value' => array(
  885. 0 => array(
  886. 'url' => '',
  887. 'height' => '400',
  888. 'width' => '300',
  889. 'autoplay' => 0,
  890. ),
  891. ),
  892. 'deleted' => '0',
  893. 'description' => '',
  894. 'display' => array(
  895. 'bookmark' => array(
  896. 'label' => 'above',
  897. 'settings' => array(),
  898. 'type' => 'hidden',
  899. 'weight' => '3',
  900. ),
  901. 'cardbig' => array(
  902. 'label' => 'hidden',
  903. 'settings' => array(),
  904. 'type' => 'hidden',
  905. 'weight' => '9',
  906. ),
  907. 'cardfull' => array(
  908. 'label' => 'above',
  909. 'settings' => array(),
  910. 'type' => 'hidden',
  911. 'weight' => '3',
  912. ),
  913. 'cardmedium' => array(
  914. 'label' => 'hidden',
  915. 'settings' => array(),
  916. 'type' => 'hidden',
  917. 'weight' => '6',
  918. ),
  919. 'cardsmall' => array(
  920. 'label' => 'above',
  921. 'settings' => array(),
  922. 'type' => 'hidden',
  923. 'weight' => '3',
  924. ),
  925. 'default' => array(
  926. 'label' => 'above',
  927. 'settings' => array(),
  928. 'type' => 'hidden',
  929. 'weight' => '3',
  930. ),
  931. 'print' => array(
  932. 'label' => 'above',
  933. 'settings' => array(),
  934. 'type' => 'hidden',
  935. 'weight' => 0,
  936. ),
  937. 'teaser' => array(
  938. 'label' => 'above',
  939. 'settings' => array(),
  940. 'type' => 'hidden',
  941. 'weight' => '6',
  942. ),
  943. ),
  944. 'entity_type' => 'node',
  945. 'field_name' => 'field_video_filter',
  946. 'label' => 'video',
  947. 'required' => 0,
  948. 'settings' => array(
  949. 'autoplay' => 0,
  950. 'entity_translation_sync' => FALSE,
  951. 'max_height' => 400,
  952. 'max_width' => 400,
  953. 'user_register_form' => FALSE,
  954. ),
  955. 'widget' => array(
  956. 'active' => 0,
  957. 'module' => 'video_filter_field',
  958. 'settings' => array(),
  959. 'type' => 'video_filter',
  960. 'weight' => '16',
  961. ),
  962. ),
  963. );
  964. // Exported field: 'node-breve-field_visuel'.
  965. $fields['node-breve-field_visuel'] = array(
  966. 'field_config' => array(
  967. 'active' => '1',
  968. 'cardinality' => '1',
  969. 'deleted' => '0',
  970. 'entity_types' => array(),
  971. 'field_name' => 'field_visuel',
  972. 'field_permissions' => array(
  973. 'type' => '0',
  974. ),
  975. 'foreign keys' => array(
  976. 'fid' => array(
  977. 'columns' => array(
  978. 'fid' => 'fid',
  979. ),
  980. 'table' => 'file_managed',
  981. ),
  982. ),
  983. 'indexes' => array(
  984. 'fid' => array(
  985. 0 => 'fid',
  986. ),
  987. ),
  988. 'locked' => '0',
  989. 'module' => 'image',
  990. 'settings' => array(
  991. 'default_image' => 0,
  992. 'entity_translation_sync' => array(
  993. 0 => 'fid',
  994. ),
  995. 'profile2_private' => FALSE,
  996. 'uri_scheme' => 'public',
  997. ),
  998. 'translatable' => '1',
  999. 'type' => 'image',
  1000. ),
  1001. 'field_instance' => array(
  1002. 'bundle' => 'breve',
  1003. 'deleted' => '0',
  1004. 'description' => '',
  1005. 'display' => array(
  1006. 'bookmark' => array(
  1007. 'label' => 'hidden',
  1008. 'module' => 'image',
  1009. 'settings' => array(
  1010. 'image_link' => '',
  1011. 'image_style' => 'card-bookmark',
  1012. ),
  1013. 'type' => 'image',
  1014. 'weight' => '2',
  1015. ),
  1016. 'cardbig' => array(
  1017. 'label' => 'hidden',
  1018. 'module' => 'image',
  1019. 'settings' => array(
  1020. 'image_link' => '',
  1021. 'image_style' => 'card-big',
  1022. ),
  1023. 'type' => 'image',
  1024. 'weight' => '14',
  1025. ),
  1026. 'cardfull' => array(
  1027. 'label' => 'hidden',
  1028. 'module' => 'image',
  1029. 'settings' => array(
  1030. 'image_link' => '',
  1031. 'image_style' => 'card-full',
  1032. ),
  1033. 'type' => 'image',
  1034. 'weight' => '18',
  1035. ),
  1036. 'cardmedium' => array(
  1037. 'label' => 'hidden',
  1038. 'module' => 'image',
  1039. 'settings' => array(
  1040. 'image_link' => '',
  1041. 'image_style' => 'card-medium',
  1042. ),
  1043. 'type' => 'image',
  1044. 'weight' => '14',
  1045. ),
  1046. 'cardsmall' => array(
  1047. 'label' => 'hidden',
  1048. 'module' => 'image',
  1049. 'settings' => array(
  1050. 'image_link' => '',
  1051. 'image_style' => 'card-small',
  1052. ),
  1053. 'type' => 'image',
  1054. 'weight' => '1',
  1055. ),
  1056. 'default' => array(
  1057. 'label' => 'above',
  1058. 'module' => 'image',
  1059. 'settings' => array(
  1060. 'image_link' => '',
  1061. 'image_style' => '',
  1062. ),
  1063. 'type' => 'image',
  1064. 'weight' => '2',
  1065. ),
  1066. 'print' => array(
  1067. 'label' => 'above',
  1068. 'settings' => array(),
  1069. 'type' => 'hidden',
  1070. 'weight' => 0,
  1071. ),
  1072. 'teaser' => array(
  1073. 'label' => 'above',
  1074. 'settings' => array(),
  1075. 'type' => 'hidden',
  1076. 'weight' => '9',
  1077. ),
  1078. ),
  1079. 'entity_type' => 'node',
  1080. 'field_name' => 'field_visuel',
  1081. 'label' => 'Image',
  1082. 'required' => 0,
  1083. 'settings' => array(
  1084. 'alt_field' => 0,
  1085. 'default_image' => 0,
  1086. 'entity_translation_sync' => FALSE,
  1087. 'file_directory' => 'breves',
  1088. 'file_extensions' => 'png gif jpg jpeg',
  1089. 'max_filesize' => '',
  1090. 'max_resolution' => '',
  1091. 'min_resolution' => '',
  1092. 'title_field' => 1,
  1093. 'user_register_form' => FALSE,
  1094. ),
  1095. 'widget' => array(
  1096. 'active' => 1,
  1097. 'module' => 'image',
  1098. 'settings' => array(
  1099. 'preview_image_style' => 'medium',
  1100. 'progress_indicator' => 'throbber',
  1101. ),
  1102. 'type' => 'image_image',
  1103. 'weight' => '15',
  1104. ),
  1105. ),
  1106. );
  1107. // Exported field: 'node-breve-field_workflow_state'.
  1108. $fields['node-breve-field_workflow_state'] = array(
  1109. 'field_config' => array(
  1110. 'active' => '1',
  1111. 'cardinality' => '1',
  1112. 'deleted' => '0',
  1113. 'entity_types' => array(),
  1114. 'field_name' => 'field_workflow_state',
  1115. 'field_permissions' => array(
  1116. 'type' => '2',
  1117. ),
  1118. 'foreign keys' => array(),
  1119. 'indexes' => array(),
  1120. 'locked' => '0',
  1121. 'module' => 'computed_field',
  1122. 'settings' => array(
  1123. 'code' => '',
  1124. 'database' => array(
  1125. 'data_default' => '',
  1126. 'data_index' => 0,
  1127. 'data_length' => '32',
  1128. 'data_not_NULL' => 0,
  1129. 'data_precision' => '10',
  1130. 'data_scale' => '2',
  1131. 'data_size' => 'normal',
  1132. 'data_type' => 'varchar',
  1133. ),
  1134. 'display_format' => '//dsm($entity);
  1135. $workflow = workflow_get_workflow_type_map_by_type($entity->type);
  1136. $states = workflow_get_workflow_states_by_wid($workflow->wid);
  1137. foreach ($states as $state) {
  1138. if ($state->sid == $entity->workflow) {
  1139. $display_output = $state->state;
  1140. dsm($state, \'state\');
  1141. }
  1142. }
  1143. ',
  1144. 'entity_translation_sync' => FALSE,
  1145. 'profile2_private' => FALSE,
  1146. 'store' => 1,
  1147. ),
  1148. 'translatable' => '0',
  1149. 'type' => 'computed',
  1150. ),
  1151. 'field_instance' => array(
  1152. 'bundle' => 'breve',
  1153. 'default_value' => NULL,
  1154. 'deleted' => '0',
  1155. 'description' => '',
  1156. 'display' => array(
  1157. 'bookmark' => array(
  1158. 'label' => 'above',
  1159. 'settings' => array(),
  1160. 'type' => 'hidden',
  1161. 'weight' => 0,
  1162. ),
  1163. 'cardbig' => array(
  1164. 'label' => 'above',
  1165. 'settings' => array(),
  1166. 'type' => 'hidden',
  1167. 'weight' => '0',
  1168. ),
  1169. 'cardfull' => array(
  1170. 'label' => 'above',
  1171. 'settings' => array(),
  1172. 'type' => 'hidden',
  1173. 'weight' => 0,
  1174. ),
  1175. 'cardmedium' => array(
  1176. 'label' => 'above',
  1177. 'settings' => array(),
  1178. 'type' => 'hidden',
  1179. 'weight' => '0',
  1180. ),
  1181. 'cardsmall' => array(
  1182. 'label' => 'above',
  1183. 'settings' => array(),
  1184. 'type' => 'hidden',
  1185. 'weight' => 0,
  1186. ),
  1187. 'default' => array(
  1188. 'label' => 'above',
  1189. 'module' => 'computed_field',
  1190. 'settings' => array(),
  1191. 'type' => 'computed_field_plain',
  1192. 'weight' => 11,
  1193. ),
  1194. 'print' => array(
  1195. 'label' => 'above',
  1196. 'settings' => array(),
  1197. 'type' => 'hidden',
  1198. 'weight' => 0,
  1199. ),
  1200. 'teaser' => array(
  1201. 'label' => 'above',
  1202. 'module' => 'computed_field',
  1203. 'settings' => array(),
  1204. 'type' => 'computed_field_unsanitized',
  1205. 'weight' => '2',
  1206. ),
  1207. ),
  1208. 'entity_type' => 'node',
  1209. 'field_name' => 'field_workflow_state',
  1210. 'label' => 'Workflow State',
  1211. 'required' => 0,
  1212. 'settings' => array(
  1213. 'entity_translation_sync' => FALSE,
  1214. 'user_register_form' => FALSE,
  1215. ),
  1216. 'widget' => array(
  1217. 'active' => 0,
  1218. 'module' => 'field_extrawidgets',
  1219. 'settings' => array(
  1220. 'display_empty' => 0,
  1221. 'formatter' => '',
  1222. 'formatter_settings' => array(),
  1223. ),
  1224. 'type' => 'field_extrawidgets_read_only',
  1225. 'weight' => '23',
  1226. ),
  1227. ),
  1228. );
  1229. // Exported field: 'node-breve-title_field'.
  1230. $fields['node-breve-title_field'] = array(
  1231. 'field_config' => array(
  1232. 'active' => '1',
  1233. 'cardinality' => '1',
  1234. 'deleted' => '0',
  1235. 'entity_types' => array(),
  1236. 'field_name' => 'title_field',
  1237. 'field_permissions' => array(
  1238. 'type' => '0',
  1239. ),
  1240. 'foreign keys' => array(
  1241. 'format' => array(
  1242. 'columns' => array(
  1243. 'format' => 'format',
  1244. ),
  1245. 'table' => 'filter_format',
  1246. ),
  1247. ),
  1248. 'indexes' => array(
  1249. 'format' => array(
  1250. 0 => 'format',
  1251. ),
  1252. ),
  1253. 'locked' => '0',
  1254. 'module' => 'text',
  1255. 'settings' => array(
  1256. 'entity_translation_sync' => FALSE,
  1257. 'max_length' => 255,
  1258. 'profile2_private' => FALSE,
  1259. ),
  1260. 'translatable' => '1',
  1261. 'type' => 'text',
  1262. ),
  1263. 'field_instance' => array(
  1264. 'bundle' => 'breve',
  1265. 'default_value' => NULL,
  1266. 'deleted' => '0',
  1267. 'description' => '',
  1268. 'display' => array(
  1269. 'bookmark' => array(
  1270. 'label' => 'hidden',
  1271. 'module' => 'text',
  1272. 'settings' => array(),
  1273. 'type' => 'text_plain',
  1274. 'weight' => '4',
  1275. ),
  1276. 'cardbig' => array(
  1277. 'label' => 'hidden',
  1278. 'module' => 'text',
  1279. 'settings' => array(),
  1280. 'type' => 'text_default',
  1281. 'weight' => '4',
  1282. ),
  1283. 'cardfull' => array(
  1284. 'label' => 'hidden',
  1285. 'module' => 'text',
  1286. 'settings' => array(),
  1287. 'type' => 'text_default',
  1288. 'weight' => '12',
  1289. ),
  1290. 'cardmedium' => array(
  1291. 'label' => 'hidden',
  1292. 'module' => 'text',
  1293. 'settings' => array(),
  1294. 'type' => 'text_default',
  1295. 'weight' => '2',
  1296. ),
  1297. 'cardsmall' => array(
  1298. 'label' => 'hidden',
  1299. 'module' => 'text',
  1300. 'settings' => array(),
  1301. 'type' => 'text_plain',
  1302. 'weight' => '1',
  1303. ),
  1304. 'default' => array(
  1305. 'label' => 'above',
  1306. 'module' => 'text',
  1307. 'settings' => array(),
  1308. 'type' => 'text_plain',
  1309. 'weight' => '0',
  1310. ),
  1311. 'print' => array(
  1312. 'label' => 'above',
  1313. 'settings' => array(),
  1314. 'type' => 'hidden',
  1315. 'weight' => 0,
  1316. ),
  1317. 'teaser' => array(
  1318. 'label' => 'hidden',
  1319. 'module' => 'text',
  1320. 'settings' => array(),
  1321. 'type' => 'text_default',
  1322. 'weight' => '0',
  1323. ),
  1324. ),
  1325. 'entity_type' => 'node',
  1326. 'field_name' => 'title_field',
  1327. 'label' => 'Titre',
  1328. 'required' => 1,
  1329. 'settings' => array(
  1330. 'entity_translation_sync' => FALSE,
  1331. 'hide_label' => array(
  1332. 'entity' => 0,
  1333. 'page' => 0,
  1334. ),
  1335. 'text_processing' => '0',
  1336. 'user_register_form' => FALSE,
  1337. ),
  1338. 'widget' => array(
  1339. 'active' => 1,
  1340. 'module' => 'text',
  1341. 'settings' => array(
  1342. 'size' => '60',
  1343. ),
  1344. 'type' => 'text_textfield',
  1345. 'weight' => '-5',
  1346. ),
  1347. ),
  1348. );
  1349. // Exported field: 'node-company-body'.
  1350. $fields['node-company-body'] = array(
  1351. 'field_config' => array(
  1352. 'active' => '1',
  1353. 'cardinality' => '1',
  1354. 'deleted' => '0',
  1355. 'entity_types' => array(
  1356. 0 => 'node',
  1357. ),
  1358. 'field_name' => 'body',
  1359. 'field_permissions' => array(
  1360. 'type' => '0',
  1361. ),
  1362. 'foreign keys' => array(
  1363. 'format' => array(
  1364. 'columns' => array(
  1365. 'format' => 'format',
  1366. ),
  1367. 'table' => 'filter_format',
  1368. ),
  1369. ),
  1370. 'indexes' => array(
  1371. 'format' => array(
  1372. 0 => 'format',
  1373. ),
  1374. ),
  1375. 'locked' => '0',
  1376. 'module' => 'text',
  1377. 'settings' => array(
  1378. 'entity_translation_sync' => FALSE,
  1379. 'profile2_private' => FALSE,
  1380. ),
  1381. 'translatable' => '1',
  1382. 'type' => 'text_with_summary',
  1383. ),
  1384. 'field_instance' => array(
  1385. 'bundle' => 'company',
  1386. 'default_value' => NULL,
  1387. 'deleted' => '0',
  1388. 'description' => '',
  1389. 'display' => array(
  1390. 'bookmark' => array(
  1391. 'label' => 'above',
  1392. 'settings' => array(),
  1393. 'type' => 'hidden',
  1394. 'weight' => 0,
  1395. ),
  1396. 'cardbig' => array(
  1397. 'label' => 'hidden',
  1398. 'module' => 'text',
  1399. 'settings' => array(),
  1400. 'type' => 'text_default',
  1401. 'weight' => '1',
  1402. ),
  1403. 'cardfull' => array(
  1404. 'label' => 'hidden',
  1405. 'module' => 'text',
  1406. 'settings' => array(),
  1407. 'type' => 'text_default',
  1408. 'weight' => '1',
  1409. ),
  1410. 'cardmedium' => array(
  1411. 'label' => 'hidden',
  1412. 'module' => 'text',
  1413. 'settings' => array(),
  1414. 'type' => 'text_plain',
  1415. 'weight' => '1',
  1416. ),
  1417. 'cardsmall' => array(
  1418. 'label' => 'above',
  1419. 'settings' => array(),
  1420. 'type' => 'hidden',
  1421. 'weight' => 0,
  1422. ),
  1423. 'default' => array(
  1424. 'label' => 'hidden',
  1425. 'module' => 'text',
  1426. 'settings' => array(),
  1427. 'type' => 'text_default',
  1428. 'weight' => '0',
  1429. ),
  1430. 'print' => array(
  1431. 'label' => 'hidden',
  1432. 'module' => 'text',
  1433. 'settings' => array(),
  1434. 'type' => 'text_plain',
  1435. 'weight' => '1',
  1436. ),
  1437. 'teaser' => array(
  1438. 'label' => 'hidden',
  1439. 'module' => 'text',
  1440. 'settings' => array(
  1441. 'trim_length' => 600,
  1442. ),
  1443. 'type' => 'text_summary_or_trimmed',
  1444. 'weight' => 0,
  1445. ),
  1446. ),
  1447. 'entity_type' => 'node',
  1448. 'field_name' => 'body',
  1449. 'label' => 'Materio speach',
  1450. 'required' => 0,
  1451. 'settings' => array(
  1452. 'display_summary' => 1,
  1453. 'entity_translation_sync' => FALSE,
  1454. 'text_processing' => '1',
  1455. 'user_register_form' => FALSE,
  1456. ),
  1457. 'widget' => array(
  1458. 'active' => 1,
  1459. 'module' => 'text',
  1460. 'settings' => array(
  1461. 'rows' => '20',
  1462. 'summary_rows' => 5,
  1463. ),
  1464. 'type' => 'text_textarea_with_summary',
  1465. 'weight' => '4',
  1466. ),
  1467. ),
  1468. );
  1469. // Exported field: 'node-company-field_attachments'.
  1470. $fields['node-company-field_attachments'] = array(
  1471. 'field_config' => array(
  1472. 'active' => '1',
  1473. 'cardinality' => '-1',
  1474. 'deleted' => '0',
  1475. 'entity_types' => array(),
  1476. 'field_name' => 'field_attachments',
  1477. 'field_permissions' => array(
  1478. 'type' => '2',
  1479. ),
  1480. 'foreign keys' => array(
  1481. 'fid' => array(
  1482. 'columns' => array(
  1483. 'fid' => 'fid',
  1484. ),
  1485. 'table' => 'file_managed',
  1486. ),
  1487. ),
  1488. 'indexes' => array(
  1489. 'fid' => array(
  1490. 0 => 'fid',
  1491. ),
  1492. ),
  1493. 'locked' => '0',
  1494. 'module' => 'file',
  1495. 'settings' => array(
  1496. 'display_default' => 1,
  1497. 'display_field' => 1,
  1498. 'entity_translation_sync' => array(
  1499. 0 => 'fid',
  1500. ),
  1501. 'profile2_private' => FALSE,
  1502. 'uri_scheme' => 'public',
  1503. ),
  1504. 'translatable' => '0',
  1505. 'type' => 'file',
  1506. ),
  1507. 'field_instance' => array(
  1508. 'bundle' => 'company',
  1509. 'deleted' => '0',
  1510. 'description' => '',
  1511. 'display' => array(
  1512. 'bookmark' => array(
  1513. 'label' => 'above',
  1514. 'settings' => array(),
  1515. 'type' => 'hidden',
  1516. 'weight' => 0,
  1517. ),
  1518. 'cardbig' => array(
  1519. 'label' => 'hidden',
  1520. 'module' => 'file',
  1521. 'settings' => array(),
  1522. 'type' => 'file_default',
  1523. 'weight' => '8',
  1524. ),
  1525. 'cardfull' => array(
  1526. 'label' => 'hidden',
  1527. 'module' => 'file',
  1528. 'settings' => array(),
  1529. 'type' => 'file_default',
  1530. 'weight' => '8',
  1531. ),
  1532. 'cardmedium' => array(
  1533. 'label' => 'hidden',
  1534. 'module' => 'file',
  1535. 'settings' => array(),
  1536. 'type' => 'file_table',
  1537. 'weight' => '8',
  1538. ),
  1539. 'cardsmall' => array(
  1540. 'label' => 'above',
  1541. 'settings' => array(),
  1542. 'type' => 'hidden',
  1543. 'weight' => 0,
  1544. ),
  1545. 'default' => array(
  1546. 'label' => 'above',
  1547. 'module' => 'file',
  1548. 'settings' => array(),
  1549. 'type' => 'file_default',
  1550. 'weight' => '10',
  1551. ),
  1552. 'print' => array(
  1553. 'label' => 'above',
  1554. 'settings' => array(),
  1555. 'type' => 'hidden',
  1556. 'weight' => '7',
  1557. ),
  1558. 'teaser' => array(
  1559. 'label' => 'above',
  1560. 'settings' => array(),
  1561. 'type' => 'hidden',
  1562. 'weight' => 0,
  1563. ),
  1564. ),
  1565. 'entity_type' => 'node',
  1566. 'field_name' => 'field_attachments',
  1567. 'label' => 'Fichiers joints',
  1568. 'required' => 0,
  1569. 'settings' => array(
  1570. 'description_field' => 0,
  1571. 'entity_translation_sync' => FALSE,
  1572. 'file_directory' => '',
  1573. 'file_extensions' => 'txt pdf doc docx',
  1574. 'max_filesize' => '',
  1575. 'user_register_form' => FALSE,
  1576. ),
  1577. 'widget' => array(
  1578. 'active' => 1,
  1579. 'module' => 'file',
  1580. 'settings' => array(
  1581. 'progress_indicator' => 'throbber',
  1582. ),
  1583. 'type' => 'file_generic',
  1584. 'weight' => '13',
  1585. ),
  1586. ),
  1587. );
  1588. // Exported field: 'node-company-field_department'.
  1589. $fields['node-company-field_department'] = array(
  1590. 'field_config' => array(
  1591. 'active' => '1',
  1592. 'cardinality' => '1',
  1593. 'deleted' => '0',
  1594. 'entity_types' => array(),
  1595. 'field_name' => 'field_department',
  1596. 'field_permissions' => array(
  1597. 'type' => '0',
  1598. ),
  1599. 'foreign keys' => array(
  1600. 'format' => array(
  1601. 'columns' => array(
  1602. 'format' => 'format',
  1603. ),
  1604. 'table' => 'filter_format',
  1605. ),
  1606. ),
  1607. 'indexes' => array(
  1608. 'format' => array(
  1609. 0 => 'format',
  1610. ),
  1611. ),
  1612. 'locked' => '0',
  1613. 'module' => 'text',
  1614. 'settings' => array(
  1615. 'entity_translation_sync' => FALSE,
  1616. 'max_length' => '255',
  1617. 'profile2_private' => FALSE,
  1618. ),
  1619. 'translatable' => '1',
  1620. 'type' => 'text',
  1621. ),
  1622. 'field_instance' => array(
  1623. 'bundle' => 'company',
  1624. 'default_value' => NULL,
  1625. 'deleted' => '0',
  1626. 'description' => '',
  1627. 'display' => array(
  1628. 'bookmark' => array(
  1629. 'label' => 'above',
  1630. 'settings' => array(),
  1631. 'type' => 'hidden',
  1632. 'weight' => 0,
  1633. ),
  1634. 'cardbig' => array(
  1635. 'label' => 'hidden',
  1636. 'module' => 'text',
  1637. 'settings' => array(),
  1638. 'type' => 'text_default',
  1639. 'weight' => '3',
  1640. ),
  1641. 'cardfull' => array(
  1642. 'label' => 'hidden',
  1643. 'module' => 'text',
  1644. 'settings' => array(),
  1645. 'type' => 'text_default',
  1646. 'weight' => '3',
  1647. ),
  1648. 'cardmedium' => array(
  1649. 'label' => 'hidden',
  1650. 'module' => 'text',
  1651. 'settings' => array(),
  1652. 'type' => 'text_default',
  1653. 'weight' => '3',
  1654. ),
  1655. 'cardsmall' => array(
  1656. 'label' => 'above',
  1657. 'settings' => array(),
  1658. 'type' => 'hidden',
  1659. 'weight' => 0,
  1660. ),
  1661. 'default' => array(
  1662. 'label' => 'inline',
  1663. 'module' => 'text',
  1664. 'settings' => array(),
  1665. 'type' => 'text_default',
  1666. 'weight' => '5',
  1667. ),
  1668. 'print' => array(
  1669. 'label' => 'above',
  1670. 'settings' => array(),
  1671. 'type' => 'hidden',
  1672. 'weight' => '8',
  1673. ),
  1674. 'teaser' => array(
  1675. 'label' => 'above',
  1676. 'settings' => array(),
  1677. 'type' => 'hidden',
  1678. 'weight' => 0,
  1679. ),
  1680. ),
  1681. 'entity_type' => 'node',
  1682. 'field_name' => 'field_department',
  1683. 'label' => 'Department',
  1684. 'required' => 0,
  1685. 'settings' => array(
  1686. 'entity_translation_sync' => FALSE,
  1687. 'text_processing' => '0',
  1688. 'user_register_form' => FALSE,
  1689. ),
  1690. 'widget' => array(
  1691. 'active' => 1,
  1692. 'module' => 'text',
  1693. 'settings' => array(
  1694. 'size' => '60',
  1695. ),
  1696. 'type' => 'text_textfield',
  1697. 'weight' => '2',
  1698. ),
  1699. ),
  1700. );
  1701. // Exported field: 'node-company-field_infos_from_company'.
  1702. $fields['node-company-field_infos_from_company'] = array(
  1703. 'field_config' => array(
  1704. 'active' => '1',
  1705. 'cardinality' => '1',
  1706. 'deleted' => '0',
  1707. 'entity_types' => array(),
  1708. 'field_name' => 'field_infos_from_company',
  1709. 'field_permissions' => array(
  1710. 'type' => '2',
  1711. ),
  1712. 'foreign keys' => array(
  1713. 'format' => array(
  1714. 'columns' => array(
  1715. 'format' => 'format',
  1716. ),
  1717. 'table' => 'filter_format',
  1718. ),
  1719. ),
  1720. 'indexes' => array(
  1721. 'format' => array(
  1722. 0 => 'format',
  1723. ),
  1724. ),
  1725. 'locked' => '0',
  1726. 'module' => 'text',
  1727. 'settings' => array(
  1728. 'entity_translation_sync' => FALSE,
  1729. 'profile2_private' => FALSE,
  1730. ),
  1731. 'translatable' => '1',
  1732. 'type' => 'text_long',
  1733. ),
  1734. 'field_instance' => array(
  1735. 'bundle' => 'company',
  1736. 'default_value' => NULL,
  1737. 'deleted' => '0',
  1738. 'description' => '',
  1739. 'display' => array(
  1740. 'bookmark' => array(
  1741. 'label' => 'above',
  1742. 'settings' => array(),
  1743. 'type' => 'hidden',
  1744. 'weight' => 0,
  1745. ),
  1746. 'cardbig' => array(
  1747. 'label' => 'hidden',
  1748. 'module' => 'text',
  1749. 'settings' => array(),
  1750. 'type' => 'text_default',
  1751. 'weight' => '2',
  1752. ),
  1753. 'cardfull' => array(
  1754. 'label' => 'hidden',
  1755. 'module' => 'text',
  1756. 'settings' => array(),
  1757. 'type' => 'text_default',
  1758. 'weight' => '2',
  1759. ),
  1760. 'cardmedium' => array(
  1761. 'label' => 'hidden',
  1762. 'module' => 'text',
  1763. 'settings' => array(),
  1764. 'type' => 'text_plain',
  1765. 'weight' => '2',
  1766. ),
  1767. 'cardsmall' => array(
  1768. 'label' => 'above',
  1769. 'settings' => array(),
  1770. 'type' => 'hidden',
  1771. 'weight' => 0,
  1772. ),
  1773. 'default' => array(
  1774. 'label' => 'above',
  1775. 'module' => 'text',
  1776. 'settings' => array(),
  1777. 'type' => 'text_default',
  1778. 'weight' => '4',
  1779. ),
  1780. 'print' => array(
  1781. 'label' => 'hidden',
  1782. 'module' => 'text',
  1783. 'settings' => array(),
  1784. 'type' => 'text_default',
  1785. 'weight' => '2',
  1786. ),
  1787. 'teaser' => array(
  1788. 'label' => 'above',
  1789. 'settings' => array(),
  1790. 'type' => 'hidden',
  1791. 'weight' => 0,
  1792. ),
  1793. ),
  1794. 'entity_type' => 'node',
  1795. 'field_name' => 'field_infos_from_company',
  1796. 'label' => 'Infos from company',
  1797. 'required' => 0,
  1798. 'settings' => array(
  1799. 'entity_translation_sync' => FALSE,
  1800. 'text_processing' => '1',
  1801. 'user_register_form' => FALSE,
  1802. ),
  1803. 'widget' => array(
  1804. 'active' => 1,
  1805. 'module' => 'text',
  1806. 'settings' => array(
  1807. 'rows' => '5',
  1808. ),
  1809. 'type' => 'text_textarea',
  1810. 'weight' => '6',
  1811. ),
  1812. ),
  1813. );
  1814. // Exported field: 'node-company-field_memo'.
  1815. $fields['node-company-field_memo'] = array(
  1816. 'field_config' => array(
  1817. 'active' => '1',
  1818. 'cardinality' => '1',
  1819. 'deleted' => '0',
  1820. 'entity_types' => array(),
  1821. 'field_name' => 'field_memo',
  1822. 'field_permissions' => array(
  1823. 'type' => '2',
  1824. ),
  1825. 'foreign keys' => array(
  1826. 'format' => array(
  1827. 'columns' => array(
  1828. 'format' => 'format',
  1829. ),
  1830. 'table' => 'filter_format',
  1831. ),
  1832. ),
  1833. 'indexes' => array(
  1834. 'format' => array(
  1835. 0 => 'format',
  1836. ),
  1837. ),
  1838. 'locked' => '0',
  1839. 'module' => 'text',
  1840. 'settings' => array(
  1841. 'entity_translation_sync' => FALSE,
  1842. 'profile2_private' => TRUE,
  1843. ),
  1844. 'translatable' => '0',
  1845. 'type' => 'text_long',
  1846. ),
  1847. 'field_instance' => array(
  1848. 'bundle' => 'company',
  1849. 'default_value' => NULL,
  1850. 'deleted' => '0',
  1851. 'description' => '',
  1852. 'display' => array(
  1853. 'bookmark' => array(
  1854. 'label' => 'above',
  1855. 'settings' => array(),
  1856. 'type' => 'hidden',
  1857. 'weight' => 0,
  1858. ),
  1859. 'cardbig' => array(
  1860. 'label' => 'above',
  1861. 'settings' => array(),
  1862. 'type' => 'hidden',
  1863. 'weight' => '11',
  1864. ),
  1865. 'cardfull' => array(
  1866. 'label' => 'hidden',
  1867. 'settings' => array(),
  1868. 'type' => 'hidden',
  1869. 'weight' => '10',
  1870. ),
  1871. 'cardmedium' => array(
  1872. 'label' => 'above',
  1873. 'settings' => array(),
  1874. 'type' => 'hidden',
  1875. 'weight' => '11',
  1876. ),
  1877. 'cardsmall' => array(
  1878. 'label' => 'above',
  1879. 'settings' => array(),
  1880. 'type' => 'hidden',
  1881. 'weight' => 0,
  1882. ),
  1883. 'default' => array(
  1884. 'label' => 'above',
  1885. 'module' => 'text',
  1886. 'settings' => array(),
  1887. 'type' => 'text_default',
  1888. 'weight' => '2',
  1889. ),
  1890. 'print' => array(
  1891. 'label' => 'above',
  1892. 'settings' => array(),
  1893. 'type' => 'hidden',
  1894. 'weight' => '9',
  1895. ),
  1896. 'teaser' => array(
  1897. 'label' => 'above',
  1898. 'settings' => array(),
  1899. 'type' => 'hidden',
  1900. 'weight' => 0,
  1901. ),
  1902. ),
  1903. 'entity_type' => 'node',
  1904. 'field_name' => 'field_memo',
  1905. 'label' => 'Mémo',
  1906. 'required' => 0,
  1907. 'settings' => array(
  1908. 'entity_translation_sync' => FALSE,
  1909. 'text_processing' => '0',
  1910. 'user_register_form' => FALSE,
  1911. ),
  1912. 'widget' => array(
  1913. 'active' => 1,
  1914. 'module' => 'text',
  1915. 'settings' => array(
  1916. 'rows' => '10',
  1917. ),
  1918. 'type' => 'text_textarea',
  1919. 'weight' => '10',
  1920. ),
  1921. ),
  1922. );
  1923. // Exported field: 'node-company-field_note'.
  1924. $fields['node-company-field_note'] = array(
  1925. 'field_config' => array(
  1926. 'active' => '1',
  1927. 'cardinality' => '1',
  1928. 'deleted' => '0',
  1929. 'entity_types' => array(),
  1930. 'field_name' => 'field_note',
  1931. 'field_permissions' => array(
  1932. 'type' => '2',
  1933. ),
  1934. 'foreign keys' => array(),
  1935. 'indexes' => array(
  1936. 'value' => array(
  1937. 0 => 'value',
  1938. ),
  1939. ),
  1940. 'locked' => '0',
  1941. 'module' => 'list',
  1942. 'settings' => array(
  1943. 'allowed_values' => array(
  1944. 0 => '0',
  1945. 1 => '1',
  1946. 2 => '2',
  1947. 3 => '3',
  1948. 4 => '4',
  1949. 5 => '5',
  1950. ),
  1951. 'allowed_values_function' => '',
  1952. 'entity_translation_sync' => FALSE,
  1953. 'profile2_private' => TRUE,
  1954. ),
  1955. 'translatable' => '0',
  1956. 'type' => 'list_integer',
  1957. ),
  1958. 'field_instance' => array(
  1959. 'bundle' => 'company',
  1960. 'default_value' => array(
  1961. 0 => array(
  1962. 'value' => '2',
  1963. ),
  1964. ),
  1965. 'deleted' => '0',
  1966. 'description' => '',
  1967. 'display' => array(
  1968. 'bookmark' => array(
  1969. 'label' => 'above',
  1970. 'settings' => array(),
  1971. 'type' => 'hidden',
  1972. 'weight' => 0,
  1973. ),
  1974. 'cardbig' => array(
  1975. 'label' => 'above',
  1976. 'settings' => array(),
  1977. 'type' => 'hidden',
  1978. 'weight' => '10',
  1979. ),
  1980. 'cardfull' => array(
  1981. 'label' => 'hidden',
  1982. 'settings' => array(),
  1983. 'type' => 'hidden',
  1984. 'weight' => '11',
  1985. ),
  1986. 'cardmedium' => array(
  1987. 'label' => 'above',
  1988. 'settings' => array(),
  1989. 'type' => 'hidden',
  1990. 'weight' => '10',
  1991. ),
  1992. 'cardsmall' => array(
  1993. 'label' => 'above',
  1994. 'settings' => array(),
  1995. 'type' => 'hidden',
  1996. 'weight' => 0,
  1997. ),
  1998. 'default' => array(
  1999. 'label' => 'inline',
  2000. 'module' => 'list',
  2001. 'settings' => array(),
  2002. 'type' => 'list_default',
  2003. 'weight' => '3',
  2004. ),
  2005. 'print' => array(
  2006. 'label' => 'above',
  2007. 'settings' => array(),
  2008. 'type' => 'hidden',
  2009. 'weight' => '10',
  2010. ),
  2011. 'teaser' => array(
  2012. 'label' => 'above',
  2013. 'settings' => array(),
  2014. 'type' => 'hidden',
  2015. 'weight' => 0,
  2016. ),
  2017. ),
  2018. 'entity_type' => 'node',
  2019. 'field_name' => 'field_note',
  2020. 'label' => 'Note',
  2021. 'required' => 1,
  2022. 'settings' => array(
  2023. 'entity_translation_sync' => FALSE,
  2024. 'user_register_form' => FALSE,
  2025. ),
  2026. 'widget' => array(
  2027. 'active' => 1,
  2028. 'module' => 'options',
  2029. 'settings' => array(),
  2030. 'type' => 'options_select',
  2031. 'weight' => '9',
  2032. ),
  2033. ),
  2034. );
  2035. // Exported field: 'node-company-field_public_address'.
  2036. $fields['node-company-field_public_address'] = array(
  2037. 'field_config' => array(
  2038. 'active' => '1',
  2039. 'cardinality' => '1',
  2040. 'deleted' => '0',
  2041. 'entity_types' => array(),
  2042. 'field_name' => 'field_public_address',
  2043. 'field_permissions' => array(
  2044. 'type' => '0',
  2045. ),
  2046. 'foreign keys' => array(),
  2047. 'indexes' => array(),
  2048. 'locked' => '0',
  2049. 'module' => 'addressfield',
  2050. 'settings' => array(
  2051. 'entity_translation_sync' => FALSE,
  2052. 'profile2_private' => 1,
  2053. ),
  2054. 'translatable' => '0',
  2055. 'type' => 'addressfield',
  2056. ),
  2057. 'field_instance' => array(
  2058. 'bundle' => 'company',
  2059. 'default_value' => array(
  2060. 0 => array(
  2061. 'element_key' => 'node|company|field_public_address|und|0',
  2062. 'thoroughfare' => '',
  2063. 'premise' => '',
  2064. 'postal_code' => '',
  2065. 'locality' => '',
  2066. 'country' => 'FR',
  2067. ),
  2068. ),
  2069. 'deleted' => '0',
  2070. 'description' => '',
  2071. 'display' => array(
  2072. 'bookmark' => array(
  2073. 'label' => 'above',
  2074. 'settings' => array(),
  2075. 'type' => 'hidden',
  2076. 'weight' => 0,
  2077. ),
  2078. 'cardbig' => array(
  2079. 'label' => 'hidden',
  2080. 'module' => 'addressfield',
  2081. 'settings' => array(
  2082. 'format_handlers' => array(
  2083. 0 => 'address',
  2084. ),
  2085. 'use_widget_handlers' => 1,
  2086. ),
  2087. 'type' => 'addressfield_default',
  2088. 'weight' => '7',
  2089. ),
  2090. 'cardfull' => array(
  2091. 'label' => 'hidden',
  2092. 'module' => 'addressfield',
  2093. 'settings' => array(
  2094. 'format_handlers' => array(
  2095. 0 => 'address',
  2096. ),
  2097. 'use_widget_handlers' => 1,
  2098. ),
  2099. 'type' => 'addressfield_default',
  2100. 'weight' => '7',
  2101. ),
  2102. 'cardmedium' => array(
  2103. 'label' => 'hidden',
  2104. 'module' => 'addressfield',
  2105. 'settings' => array(
  2106. 'format_handlers' => array(
  2107. 'address' => 'address',
  2108. ),
  2109. 'use_widget_handlers' => 1,
  2110. ),
  2111. 'type' => 'addressfield_default',
  2112. 'weight' => '7',
  2113. ),
  2114. 'cardsmall' => array(
  2115. 'label' => 'above',
  2116. 'settings' => array(),
  2117. 'type' => 'hidden',
  2118. 'weight' => 0,
  2119. ),
  2120. 'default' => array(
  2121. 'label' => 'above',
  2122. 'module' => 'addressfield',
  2123. 'settings' => array(
  2124. 'format_handlers' => array(
  2125. 0 => 'address',
  2126. ),
  2127. 'use_widget_handlers' => 1,
  2128. ),
  2129. 'type' => 'addressfield_default',
  2130. 'weight' => '9',
  2131. ),
  2132. 'print' => array(
  2133. 'label' => 'hidden',
  2134. 'module' => 'addressfield',
  2135. 'settings' => array(
  2136. 'format_handlers' => array(
  2137. 0 => 'address',
  2138. ),
  2139. 'use_widget_handlers' => 1,
  2140. ),
  2141. 'type' => 'addressfield_default',
  2142. 'weight' => '6',
  2143. ),
  2144. 'teaser' => array(
  2145. 'label' => 'above',
  2146. 'settings' => array(),
  2147. 'type' => 'hidden',
  2148. 'weight' => 0,
  2149. ),
  2150. ),
  2151. 'entity_type' => 'node',
  2152. 'field_name' => 'field_public_address',
  2153. 'label' => 'Adresse',
  2154. 'required' => 0,
  2155. 'settings' => array(
  2156. 'entity_translation_sync' => FALSE,
  2157. 'user_register_form' => FALSE,
  2158. ),
  2159. 'widget' => array(
  2160. 'active' => 1,
  2161. 'module' => 'addressfield',
  2162. 'settings' => array(
  2163. 'available_countries' => array(),
  2164. 'format_handlers' => array(
  2165. 'address' => 'address',
  2166. 'name-full' => 0,
  2167. 'name-oneline' => 0,
  2168. 'organisation' => 0,
  2169. ),
  2170. ),
  2171. 'type' => 'addressfield_standard',
  2172. 'weight' => '7',
  2173. ),
  2174. ),
  2175. );
  2176. // Exported field: 'node-company-field_public_email'.
  2177. $fields['node-company-field_public_email'] = array(
  2178. 'field_config' => array(
  2179. 'active' => '1',
  2180. 'cardinality' => '1',
  2181. 'deleted' => '0',
  2182. 'entity_types' => array(),
  2183. 'field_name' => 'field_public_email',
  2184. 'field_permissions' => array(
  2185. 'type' => '0',
  2186. ),
  2187. 'foreign keys' => array(),
  2188. 'indexes' => array(),
  2189. 'locked' => '0',
  2190. 'module' => 'email',
  2191. 'settings' => array(
  2192. 'entity_translation_sync' => FALSE,
  2193. 'profile2_private' => FALSE,
  2194. ),
  2195. 'translatable' => '0',
  2196. 'type' => 'email',
  2197. ),
  2198. 'field_instance' => array(
  2199. 'bundle' => 'company',
  2200. 'default_value' => NULL,
  2201. 'deleted' => '0',
  2202. 'description' => '',
  2203. 'display' => array(
  2204. 'bookmark' => array(
  2205. 'label' => 'above',
  2206. 'settings' => array(),
  2207. 'type' => 'hidden',
  2208. 'weight' => 0,
  2209. ),
  2210. 'cardbig' => array(
  2211. 'label' => 'hidden',
  2212. 'module' => 'email',
  2213. 'settings' => array(),
  2214. 'type' => 'email_default',
  2215. 'weight' => '5',
  2216. ),
  2217. 'cardfull' => array(
  2218. 'label' => 'hidden',
  2219. 'module' => 'email',
  2220. 'settings' => array(),
  2221. 'type' => 'email_default',
  2222. 'weight' => '5',
  2223. ),
  2224. 'cardmedium' => array(
  2225. 'label' => 'hidden',
  2226. 'module' => 'email',
  2227. 'settings' => array(),
  2228. 'type' => 'email_default',
  2229. 'weight' => '5',
  2230. ),
  2231. 'cardsmall' => array(
  2232. 'label' => 'above',
  2233. 'settings' => array(),
  2234. 'type' => 'hidden',
  2235. 'weight' => 0,
  2236. ),
  2237. 'default' => array(
  2238. 'label' => 'above',
  2239. 'module' => 'email',
  2240. 'settings' => array(),
  2241. 'type' => 'email_default',
  2242. 'weight' => '7',
  2243. ),
  2244. 'print' => array(
  2245. 'label' => 'hidden',
  2246. 'module' => 'email',
  2247. 'settings' => array(),
  2248. 'type' => 'email_plain',
  2249. 'weight' => '5',
  2250. ),
  2251. 'teaser' => array(
  2252. 'label' => 'above',
  2253. 'settings' => array(),
  2254. 'type' => 'hidden',
  2255. 'weight' => 0,
  2256. ),
  2257. ),
  2258. 'entity_type' => 'node',
  2259. 'field_name' => 'field_public_email',
  2260. 'label' => 'Email',
  2261. 'required' => 0,
  2262. 'settings' => array(
  2263. 'entity_translation_sync' => FALSE,
  2264. 'user_register_form' => FALSE,
  2265. ),
  2266. 'widget' => array(
  2267. 'active' => 1,
  2268. 'module' => 'email',
  2269. 'settings' => array(
  2270. 'size' => '60',
  2271. ),
  2272. 'type' => 'email_textfield',
  2273. 'weight' => '3',
  2274. ),
  2275. ),
  2276. );
  2277. // Exported field: 'node-company-field_public_phone'.
  2278. $fields['node-company-field_public_phone'] = array(
  2279. 'field_config' => array(
  2280. 'active' => '1',
  2281. 'cardinality' => '-1',
  2282. 'deleted' => '0',
  2283. 'entity_types' => array(),
  2284. 'field_name' => 'field_public_phone',
  2285. 'field_permissions' => array(
  2286. 'type' => '0',
  2287. ),
  2288. 'foreign keys' => array(),
  2289. 'indexes' => array(),
  2290. 'locked' => '0',
  2291. 'module' => 'cck_phone',
  2292. 'settings' => array(
  2293. 'entity_translation_sync' => FALSE,
  2294. 'profile2_private' => FALSE,
  2295. 'size' => '30',
  2296. ),
  2297. 'translatable' => '0',
  2298. 'type' => 'phone_number',
  2299. ),
  2300. 'field_instance' => array(
  2301. 'bundle' => 'company',
  2302. 'deleted' => '0',
  2303. 'description' => '',
  2304. 'display' => array(
  2305. 'bookmark' => array(
  2306. 'label' => 'above',
  2307. 'settings' => array(),
  2308. 'type' => 'hidden',
  2309. 'weight' => 0,
  2310. ),
  2311. 'cardbig' => array(
  2312. 'label' => 'hidden',
  2313. 'module' => 'cck_phone',
  2314. 'settings' => array(),
  2315. 'type' => 'global_phone_number',
  2316. 'weight' => '6',
  2317. ),
  2318. 'cardfull' => array(
  2319. 'label' => 'hidden',
  2320. 'module' => 'cck_phone',
  2321. 'settings' => array(),
  2322. 'type' => 'global_phone_number',
  2323. 'weight' => '6',
  2324. ),
  2325. 'cardmedium' => array(
  2326. 'label' => 'hidden',
  2327. 'module' => 'cck_phone',
  2328. 'settings' => array(),
  2329. 'type' => 'global_phone_number',
  2330. 'weight' => '6',
  2331. ),
  2332. 'cardsmall' => array(
  2333. 'label' => 'above',
  2334. 'settings' => array(),
  2335. 'type' => 'hidden',
  2336. 'weight' => 0,
  2337. ),
  2338. 'default' => array(
  2339. 'label' => 'above',
  2340. 'module' => 'cck_phone',
  2341. 'settings' => array(),
  2342. 'type' => 'global_phone_number',
  2343. 'weight' => '8',
  2344. ),
  2345. 'print' => array(
  2346. 'label' => 'hidden',
  2347. 'module' => 'cck_phone',
  2348. 'settings' => array(),
  2349. 'type' => 'global_phone_number',
  2350. 'weight' => '4',
  2351. ),
  2352. 'teaser' => array(
  2353. 'label' => 'above',
  2354. 'settings' => array(),
  2355. 'type' => 'hidden',
  2356. 'weight' => 0,
  2357. ),
  2358. ),
  2359. 'entity_type' => 'node',
  2360. 'field_name' => 'field_public_phone',
  2361. 'label' => 'Phone',
  2362. 'required' => 0,
  2363. 'settings' => array(
  2364. 'all_country_codes' => 1,
  2365. 'country_code_position' => 'after',
  2366. 'country_codes' => array(
  2367. 'country_selection' => array(
  2368. 'ad' => 0,
  2369. 'ae' => 0,
  2370. 'af' => 0,
  2371. 'ag' => 0,
  2372. 'ai' => 0,
  2373. 'al' => 0,
  2374. 'am' => 0,
  2375. 'an' => 0,
  2376. 'ao' => 0,
  2377. 'ar' => 0,
  2378. 'as' => 0,
  2379. 'at' => 0,
  2380. 'au' => 0,
  2381. 'aw' => 0,
  2382. 'az' => 0,
  2383. 'ba' => 0,
  2384. 'bb' => 0,
  2385. 'bd' => 0,
  2386. 'be' => 0,
  2387. 'bf' => 0,
  2388. 'bg' => 0,
  2389. 'bh' => 0,
  2390. 'bi' => 0,
  2391. 'bj' => 0,
  2392. 'bm' => 0,
  2393. 'bn' => 0,
  2394. 'bo' => 0,
  2395. 'br' => 0,
  2396. 'bs' => 0,
  2397. 'bt' => 0,
  2398. 'bw' => 0,
  2399. 'by' => 0,
  2400. 'bz' => 0,
  2401. 'ca' => 0,
  2402. 'cc' => 0,
  2403. 'cd' => 0,
  2404. 'cf' => 0,
  2405. 'cg' => 0,
  2406. 'ch' => 0,
  2407. 'ci' => 0,
  2408. 'ck' => 0,
  2409. 'cl' => 0,
  2410. 'cm' => 0,
  2411. 'cn' => 0,
  2412. 'co' => 0,
  2413. 'cr' => 0,
  2414. 'cu' => 0,
  2415. 'cv' => 0,
  2416. 'cx' => 0,
  2417. 'cy' => 0,
  2418. 'cz' => 0,
  2419. 'de' => 0,
  2420. 'dj' => 0,
  2421. 'dk' => 0,
  2422. 'dm' => 0,
  2423. 'do' => 0,
  2424. 'dz' => 0,
  2425. 'ec' => 0,
  2426. 'ee' => 0,
  2427. 'eg' => 0,
  2428. 'er' => 0,
  2429. 'es' => 0,
  2430. 'et' => 0,
  2431. 'fi' => 0,
  2432. 'fj' => 0,
  2433. 'fk' => 0,
  2434. 'fm' => 0,
  2435. 'fo' => 0,
  2436. 'fr' => 0,
  2437. 'ga' => 0,
  2438. 'gb' => 0,
  2439. 'gd' => 0,
  2440. 'ge' => 0,
  2441. 'gf' => 0,
  2442. 'gh' => 0,
  2443. 'gi' => 0,
  2444. 'gl' => 0,
  2445. 'gm' => 0,
  2446. 'gn' => 0,
  2447. 'gp' => 0,
  2448. 'gq' => 0,
  2449. 'gr' => 0,
  2450. 'gt' => 0,
  2451. 'gu' => 0,
  2452. 'gw' => 0,
  2453. 'gy' => 0,
  2454. 'hk' => 0,
  2455. 'hn' => 0,
  2456. 'hr' => 0,
  2457. 'ht' => 0,
  2458. 'hu' => 0,
  2459. 'id' => 0,
  2460. 'ie' => 0,
  2461. 'il' => 0,
  2462. 'in' => 0,
  2463. 'io' => 0,
  2464. 'iq' => 0,
  2465. 'ir' => 0,
  2466. 'is' => 0,
  2467. 'it' => 0,
  2468. 'jm' => 0,
  2469. 'jo' => 0,
  2470. 'jp' => 0,
  2471. 'ke' => 0,
  2472. 'kg' => 0,
  2473. 'kh' => 0,
  2474. 'ki' => 0,
  2475. 'km' => 0,
  2476. 'kn' => 0,
  2477. 'kp' => 0,
  2478. 'kr' => 0,
  2479. 'kw' => 0,
  2480. 'ky' => 0,
  2481. 'kz' => 0,
  2482. 'la' => 0,
  2483. 'lb' => 0,
  2484. 'lc' => 0,
  2485. 'li' => 0,
  2486. 'lk' => 0,
  2487. 'lr' => 0,
  2488. 'ls' => 0,
  2489. 'lt' => 0,
  2490. 'lu' => 0,
  2491. 'lv' => 0,
  2492. 'ly' => 0,
  2493. 'ma' => 0,
  2494. 'mc' => 0,
  2495. 'md' => 0,
  2496. 'me' => 0,
  2497. 'mg' => 0,
  2498. 'mh' => 0,
  2499. 'mk' => 0,
  2500. 'ml' => 0,
  2501. 'mm' => 0,
  2502. 'mn' => 0,
  2503. 'mo' => 0,
  2504. 'mp' => 0,
  2505. 'mq' => 0,
  2506. 'mr' => 0,
  2507. 'ms' => 0,
  2508. 'mt' => 0,
  2509. 'mu' => 0,
  2510. 'mv' => 0,
  2511. 'mw' => 0,
  2512. 'mx' => 0,
  2513. 'my' => 0,
  2514. 'mz' => 0,
  2515. 'na' => 0,
  2516. 'nc' => 0,
  2517. 'ne' => 0,
  2518. 'nf' => 0,
  2519. 'ng' => 0,
  2520. 'ni' => 0,
  2521. 'nl' => 0,
  2522. 'no' => 0,
  2523. 'np' => 0,
  2524. 'nr' => 0,
  2525. 'nu' => 0,
  2526. 'nz' => 0,
  2527. 'om' => 0,
  2528. 'pa' => 0,
  2529. 'pe' => 0,
  2530. 'pf' => 0,
  2531. 'pg' => 0,
  2532. 'ph' => 0,
  2533. 'pk' => 0,
  2534. 'pl' => 0,
  2535. 'pm' => 0,
  2536. 'pr' => 0,
  2537. 'ps' => 0,
  2538. 'pt' => 0,
  2539. 'pw' => 0,
  2540. 'py' => 0,
  2541. 'qa' => 0,
  2542. 'ro' => 0,
  2543. 'rs' => 0,
  2544. 'ru' => 0,
  2545. 'rw' => 0,
  2546. 'sa' => 0,
  2547. 'sb' => 0,
  2548. 'sc' => 0,
  2549. 'sd' => 0,
  2550. 'se' => 0,
  2551. 'sg' => 0,
  2552. 'sh' => 0,
  2553. 'si' => 0,
  2554. 'sk' => 0,
  2555. 'sl' => 0,
  2556. 'sm' => 0,
  2557. 'sn' => 0,
  2558. 'so' => 0,
  2559. 'sr' => 0,
  2560. 'ss' => 0,
  2561. 'st' => 0,
  2562. 'sv' => 0,
  2563. 'sy' => 0,
  2564. 'sz' => 0,
  2565. 'tc' => 0,
  2566. 'td' => 0,
  2567. 'tg' => 0,
  2568. 'th' => 0,
  2569. 'tj' => 0,
  2570. 'tk' => 0,
  2571. 'tm' => 0,
  2572. 'tn' => 0,
  2573. 'to' => 0,
  2574. 'tp' => 0,
  2575. 'tr' => 0,
  2576. 'tt' => 0,
  2577. 'tv' => 0,
  2578. 'tw' => 0,
  2579. 'tz' => 0,
  2580. 'ua' => 0,
  2581. 'ug' => 0,
  2582. 'us' => 0,
  2583. 'uy' => 0,
  2584. 'uz' => 0,
  2585. 'va' => 0,
  2586. 'vc' => 0,
  2587. 've' => 0,
  2588. 'vg' => 0,
  2589. 'vi' => 0,
  2590. 'vn' => 0,
  2591. 'vu' => 0,
  2592. 'wf' => 0,
  2593. 'ws' => 0,
  2594. 'ye' => 0,
  2595. 'yt' => 0,
  2596. 'za' => 0,
  2597. 'zm' => 0,
  2598. 'zw' => 0,
  2599. ),
  2600. 'hide_single_cc' => 0,
  2601. ),
  2602. 'default_country' => 'fr',
  2603. 'enable_country_level_validation' => 0,
  2604. 'enable_default_country' => 1,
  2605. 'enable_extension' => 0,
  2606. 'entity_translation_sync' => FALSE,
  2607. 'user_register_form' => FALSE,
  2608. ),
  2609. 'widget' => array(
  2610. 'active' => 0,
  2611. 'module' => 'cck_phone',
  2612. 'settings' => array(
  2613. 'size' => 15,
  2614. ),
  2615. 'type' => 'phone_number',
  2616. 'weight' => '8',
  2617. ),
  2618. ),
  2619. );
  2620. // Exported field: 'node-company-field_tode_company'.
  2621. $fields['node-company-field_tode_company'] = array(
  2622. 'field_config' => array(
  2623. 'active' => '1',
  2624. 'cardinality' => '1',
  2625. 'deleted' => '0',
  2626. 'entity_types' => array(),
  2627. 'field_name' => 'field_tode_company',
  2628. 'field_permissions' => array(
  2629. 'type' => '2',
  2630. ),
  2631. 'foreign keys' => array(
  2632. 'tid' => array(
  2633. 'columns' => array(
  2634. 'tid' => 'tid',
  2635. ),
  2636. 'table' => 'taxonomy_term_data',
  2637. ),
  2638. ),
  2639. 'indexes' => array(
  2640. 'tid' => array(
  2641. 0 => 'tid',
  2642. ),
  2643. ),
  2644. 'locked' => '0',
  2645. 'module' => 'taxonomy',
  2646. 'settings' => array(
  2647. 'allowed_values' => array(
  2648. 0 => array(
  2649. 'vocabulary' => 'company',
  2650. 'parent' => '0',
  2651. 'depth' => '',
  2652. ),
  2653. ),
  2654. 'entity_translation_sync' => FALSE,
  2655. 'options_list_callback' => 'i18n_taxonomy_allowed_values',
  2656. 'profile2_private' => FALSE,
  2657. 'user_role_field' => array(
  2658. 1 => 0,
  2659. 2 => 0,
  2660. 3 => 0,
  2661. 4 => 0,
  2662. 5 => '5',
  2663. ),
  2664. ),
  2665. 'translatable' => '0',
  2666. 'type' => 'taxonomy_term_reference',
  2667. ),
  2668. 'field_instance' => array(
  2669. 'bundle' => 'company',
  2670. 'deleted' => '0',
  2671. 'description' => '',
  2672. 'display' => array(
  2673. 'bookmark' => array(
  2674. 'label' => 'above',
  2675. 'settings' => array(),
  2676. 'type' => 'hidden',
  2677. 'weight' => 0,
  2678. ),
  2679. 'cardbig' => array(
  2680. 'label' => 'hidden',
  2681. 'module' => 'taxonomy',
  2682. 'settings' => array(),
  2683. 'type' => 'taxonomy_term_reference_plain',
  2684. 'weight' => '0',
  2685. ),
  2686. 'cardfull' => array(
  2687. 'label' => 'hidden',
  2688. 'module' => 'taxonomy',
  2689. 'settings' => array(),
  2690. 'type' => 'taxonomy_term_reference_plain',
  2691. 'weight' => '0',
  2692. ),
  2693. 'cardmedium' => array(
  2694. 'label' => 'hidden',
  2695. 'module' => 'taxonomy',
  2696. 'settings' => array(),
  2697. 'type' => 'taxonomy_term_reference_plain',
  2698. 'weight' => '0',
  2699. ),
  2700. 'cardsmall' => array(
  2701. 'label' => 'above',
  2702. 'settings' => array(),
  2703. 'type' => 'hidden',
  2704. 'weight' => 0,
  2705. ),
  2706. 'default' => array(
  2707. 'label' => 'above',
  2708. 'settings' => array(),
  2709. 'type' => 'hidden',
  2710. 'weight' => '11',
  2711. ),
  2712. 'print' => array(
  2713. 'label' => 'hidden',
  2714. 'module' => 'taxonomy',
  2715. 'settings' => array(),
  2716. 'type' => 'taxonomy_term_reference_plain',
  2717. 'weight' => '0',
  2718. ),
  2719. 'teaser' => array(
  2720. 'label' => 'above',
  2721. 'settings' => array(),
  2722. 'type' => 'hidden',
  2723. 'weight' => 0,
  2724. ),
  2725. ),
  2726. 'entity_type' => 'node',
  2727. 'field_name' => 'field_tode_company',
  2728. 'label' => 'Name',
  2729. 'required' => 1,
  2730. 'settings' => array(
  2731. 'entity_translation_sync' => FALSE,
  2732. 'user_register_form' => FALSE,
  2733. ),
  2734. 'widget' => array(
  2735. 'active' => 1,
  2736. 'module' => 'tode',
  2737. 'settings' => array(
  2738. 'choose_term_parent' => 0,
  2739. 'maxlength' => '255',
  2740. 'redirect_node_to_term' => 0,
  2741. 'redirect_term_to_node' => 1,
  2742. 'show_create_tode' => 0,
  2743. 'show_term_form' => 0,
  2744. 'size' => 60,
  2745. ),
  2746. 'type' => 'tode',
  2747. 'weight' => '1',
  2748. ),
  2749. ),
  2750. );
  2751. // Exported field: 'node-company-field_website'.
  2752. $fields['node-company-field_website'] = array(
  2753. 'field_config' => array(
  2754. 'active' => '1',
  2755. 'cardinality' => '1',
  2756. 'deleted' => '0',
  2757. 'entity_types' => array(),
  2758. 'field_name' => 'field_website',
  2759. 'field_permissions' => array(
  2760. 'type' => '0',
  2761. ),
  2762. 'foreign keys' => array(),
  2763. 'indexes' => array(),
  2764. 'locked' => '0',
  2765. 'module' => 'link',
  2766. 'settings' => array(
  2767. 'attributes' => array(
  2768. 'class' => '',
  2769. 'rel' => '',
  2770. 'target' => 'default',
  2771. ),
  2772. 'display' => array(
  2773. 'url_cutoff' => 80,
  2774. ),
  2775. 'enable_tokens' => 1,
  2776. 'entity_translation_sync' => FALSE,
  2777. 'profile2_private' => FALSE,
  2778. 'title' => 'optional',
  2779. 'title_maxlength' => 128,
  2780. 'title_value' => '',
  2781. 'url' => 0,
  2782. ),
  2783. 'translatable' => '0',
  2784. 'type' => 'link_field',
  2785. ),
  2786. 'field_instance' => array(
  2787. 'bundle' => 'company',
  2788. 'default_value' => NULL,
  2789. 'deleted' => '0',
  2790. 'description' => '"http://" will be added automaticly.',
  2791. 'display' => array(
  2792. 'bookmark' => array(
  2793. 'label' => 'above',
  2794. 'settings' => array(),
  2795. 'type' => 'hidden',
  2796. 'weight' => 0,
  2797. ),
  2798. 'cardbig' => array(
  2799. 'label' => 'hidden',
  2800. 'module' => 'link',
  2801. 'settings' => array(),
  2802. 'type' => 'link_default',
  2803. 'weight' => '4',
  2804. ),
  2805. 'cardfull' => array(
  2806. 'label' => 'hidden',
  2807. 'module' => 'link',
  2808. 'settings' => array(),
  2809. 'type' => 'link_default',
  2810. 'weight' => '4',
  2811. ),
  2812. 'cardmedium' => array(
  2813. 'label' => 'hidden',
  2814. 'module' => 'link',
  2815. 'settings' => array(),
  2816. 'type' => 'link_default',
  2817. 'weight' => '4',
  2818. ),
  2819. 'cardsmall' => array(
  2820. 'label' => 'above',
  2821. 'settings' => array(),
  2822. 'type' => 'hidden',
  2823. 'weight' => 0,
  2824. ),
  2825. 'default' => array(
  2826. 'label' => 'inline',
  2827. 'module' => 'link',
  2828. 'settings' => array(),
  2829. 'type' => 'link_default',
  2830. 'weight' => '6',
  2831. ),
  2832. 'print' => array(
  2833. 'label' => 'hidden',
  2834. 'module' => 'link',
  2835. 'settings' => array(),
  2836. 'type' => 'link_plain',
  2837. 'weight' => '3',
  2838. ),
  2839. 'teaser' => array(
  2840. 'label' => 'above',
  2841. 'settings' => array(),
  2842. 'type' => 'hidden',
  2843. 'weight' => 0,
  2844. ),
  2845. ),
  2846. 'entity_type' => 'node',
  2847. 'field_name' => 'field_website',
  2848. 'label' => 'website',
  2849. 'required' => 0,
  2850. 'settings' => array(
  2851. 'attributes' => array(
  2852. 'class' => '',
  2853. 'configurable_title' => 0,
  2854. 'rel' => '',
  2855. 'target' => '_blank',
  2856. 'title' => '',
  2857. ),
  2858. 'display' => array(
  2859. 'url_cutoff' => '80',
  2860. ),
  2861. 'enable_tokens' => 1,
  2862. 'entity_translation_sync' => FALSE,
  2863. 'rel_remove' => 'default',
  2864. 'title' => 'none',
  2865. 'title_maxlength' => '128',
  2866. 'title_value' => '',
  2867. 'url' => 0,
  2868. 'user_register_form' => FALSE,
  2869. 'validate_url' => 1,
  2870. ),
  2871. 'widget' => array(
  2872. 'active' => 0,
  2873. 'module' => 'link',
  2874. 'settings' => array(),
  2875. 'type' => 'link_field',
  2876. 'weight' => '5',
  2877. ),
  2878. ),
  2879. );
  2880. // Exported field: 'node-materiau-field_attachments'.
  2881. $fields['node-materiau-field_attachments'] = array(
  2882. 'field_config' => array(
  2883. 'active' => '1',
  2884. 'cardinality' => '-1',
  2885. 'deleted' => '0',
  2886. 'entity_types' => array(),
  2887. 'field_name' => 'field_attachments',
  2888. 'field_permissions' => array(
  2889. 'type' => '2',
  2890. ),
  2891. 'foreign keys' => array(
  2892. 'fid' => array(
  2893. 'columns' => array(
  2894. 'fid' => 'fid',
  2895. ),
  2896. 'table' => 'file_managed',
  2897. ),
  2898. ),
  2899. 'indexes' => array(
  2900. 'fid' => array(
  2901. 0 => 'fid',
  2902. ),
  2903. ),
  2904. 'locked' => '0',
  2905. 'module' => 'file',
  2906. 'settings' => array(
  2907. 'display_default' => 1,
  2908. 'display_field' => 1,
  2909. 'entity_translation_sync' => array(
  2910. 0 => 'fid',
  2911. ),
  2912. 'profile2_private' => FALSE,
  2913. 'uri_scheme' => 'public',
  2914. ),
  2915. 'translatable' => '0',
  2916. 'type' => 'file',
  2917. ),
  2918. 'field_instance' => array(
  2919. 'bundle' => 'materiau',
  2920. 'deleted' => '0',
  2921. 'description' => '',
  2922. 'display' => array(
  2923. 'bookmark' => array(
  2924. 'label' => 'above',
  2925. 'settings' => array(),
  2926. 'type' => 'hidden',
  2927. 'weight' => '18',
  2928. ),
  2929. 'cardbig' => array(
  2930. 'label' => 'hidden',
  2931. 'module' => 'file',
  2932. 'settings' => array(),
  2933. 'type' => 'file_default',
  2934. 'weight' => '6',
  2935. ),
  2936. 'cardfull' => array(
  2937. 'label' => 'hidden',
  2938. 'module' => 'file',
  2939. 'settings' => array(),
  2940. 'type' => 'file_default',
  2941. 'weight' => '17',
  2942. ),
  2943. 'cardmedium' => array(
  2944. 'label' => 'hidden',
  2945. 'module' => 'file',
  2946. 'settings' => array(),
  2947. 'type' => 'file_default',
  2948. 'weight' => '12',
  2949. ),
  2950. 'cardsmall' => array(
  2951. 'label' => 'above',
  2952. 'settings' => array(),
  2953. 'type' => 'hidden',
  2954. 'weight' => '16',
  2955. ),
  2956. 'default' => array(
  2957. 'label' => 'hidden',
  2958. 'module' => 'file',
  2959. 'settings' => array(),
  2960. 'type' => 'file_default',
  2961. 'weight' => '9',
  2962. ),
  2963. 'print' => array(
  2964. 'label' => 'above',
  2965. 'settings' => array(),
  2966. 'type' => 'hidden',
  2967. 'weight' => '17',
  2968. ),
  2969. 'teaser' => array(
  2970. 'label' => 'above',
  2971. 'settings' => array(),
  2972. 'type' => 'hidden',
  2973. 'weight' => '17',
  2974. ),
  2975. ),
  2976. 'entity_type' => 'node',
  2977. 'field_name' => 'field_attachments',
  2978. 'label' => 'Fichiers joints',
  2979. 'required' => 0,
  2980. 'settings' => array(
  2981. 'description_field' => 0,
  2982. 'entity_translation_sync' => FALSE,
  2983. 'file_directory' => '',
  2984. 'file_extensions' => 'txt pdf doc docx',
  2985. 'max_filesize' => '',
  2986. 'user_register_form' => FALSE,
  2987. ),
  2988. 'widget' => array(
  2989. 'active' => 1,
  2990. 'module' => 'file',
  2991. 'settings' => array(
  2992. 'progress_indicator' => 'throbber',
  2993. ),
  2994. 'type' => 'file_generic',
  2995. 'weight' => '3',
  2996. ),
  2997. ),
  2998. );
  2999. // Exported field: 'node-materiau-field_breve_ref'.
  3000. $fields['node-materiau-field_breve_ref'] = array(
  3001. 'field_config' => array(
  3002. 'active' => '1',
  3003. 'cardinality' => '-1',
  3004. 'deleted' => '0',
  3005. 'entity_types' => array(),
  3006. 'field_name' => 'field_breve_ref',
  3007. 'field_permissions' => array(
  3008. 'type' => '0',
  3009. ),
  3010. 'foreign keys' => array(
  3011. 'node' => array(
  3012. 'columns' => array(
  3013. 'target_id' => 'nid',
  3014. ),
  3015. 'table' => 'node',
  3016. ),
  3017. ),
  3018. 'indexes' => array(
  3019. 'target_id' => array(
  3020. 0 => 'target_id',
  3021. ),
  3022. ),
  3023. 'locked' => '0',
  3024. 'module' => 'entityreference',
  3025. 'settings' => array(
  3026. 'entity_translation_sync' => FALSE,
  3027. 'handler' => 'base',
  3028. 'handler_settings' => array(
  3029. 'behaviors' => array(
  3030. 'views-select-list' => array(
  3031. 'status' => 0,
  3032. ),
  3033. ),
  3034. 'sort' => array(
  3035. 'direction' => 'ASC',
  3036. 'field' => 'body:value',
  3037. 'property' => 'nid',
  3038. 'type' => 'none',
  3039. ),
  3040. 'target_bundles' => array(
  3041. 'breve' => 'breve',
  3042. ),
  3043. ),
  3044. 'handler_submit' => 'Change handler',
  3045. 'profile2_private' => FALSE,
  3046. 'target_type' => 'node',
  3047. ),
  3048. 'translatable' => '0',
  3049. 'type' => 'entityreference',
  3050. ),
  3051. 'field_instance' => array(
  3052. 'bundle' => 'materiau',
  3053. 'default_value' => NULL,
  3054. 'deleted' => '0',
  3055. 'description' => '',
  3056. 'display' => array(
  3057. 'bookmark' => array(
  3058. 'label' => 'above',
  3059. 'settings' => array(),
  3060. 'type' => 'hidden',
  3061. 'weight' => '8',
  3062. ),
  3063. 'cardbig' => array(
  3064. 'label' => 'hidden',
  3065. 'settings' => array(),
  3066. 'type' => 'hidden',
  3067. 'weight' => '9',
  3068. ),
  3069. 'cardfull' => array(
  3070. 'label' => 'above',
  3071. 'settings' => array(),
  3072. 'type' => 'hidden',
  3073. 'weight' => '5',
  3074. ),
  3075. 'cardmedium' => array(
  3076. 'label' => 'hidden',
  3077. 'settings' => array(),
  3078. 'type' => 'hidden',
  3079. 'weight' => '13',
  3080. ),
  3081. 'cardsmall' => array(
  3082. 'label' => 'above',
  3083. 'settings' => array(),
  3084. 'type' => 'hidden',
  3085. 'weight' => '8',
  3086. ),
  3087. 'default' => array(
  3088. 'label' => 'above',
  3089. 'module' => 'entityreference',
  3090. 'settings' => array(
  3091. 'link' => FALSE,
  3092. ),
  3093. 'type' => 'entityreference_label',
  3094. 'weight' => '23',
  3095. ),
  3096. 'print' => array(
  3097. 'label' => 'above',
  3098. 'settings' => array(),
  3099. 'type' => 'hidden',
  3100. 'weight' => '10',
  3101. ),
  3102. 'teaser' => array(
  3103. 'label' => 'above',
  3104. 'settings' => array(),
  3105. 'type' => 'hidden',
  3106. 'weight' => '9',
  3107. ),
  3108. ),
  3109. 'entity_type' => 'node',
  3110. 'field_name' => 'field_breve_ref',
  3111. 'label' => 'Brève(s) liée(s)',
  3112. 'required' => 0,
  3113. 'settings' => array(
  3114. 'entity_translation_sync' => FALSE,
  3115. 'user_register_form' => FALSE,
  3116. ),
  3117. 'widget' => array(
  3118. 'active' => 1,
  3119. 'module' => 'entityreference',
  3120. 'settings' => array(
  3121. 'match_operator' => 'CONTAINS',
  3122. 'path' => '',
  3123. 'size' => '60',
  3124. ),
  3125. 'type' => 'entityreference_autocomplete',
  3126. 'weight' => '28',
  3127. ),
  3128. ),
  3129. );
  3130. // Exported field: 'node-materiau-field_company_distrib'.
  3131. $fields['node-materiau-field_company_distrib'] = array(
  3132. 'field_config' => array(
  3133. 'active' => '1',
  3134. 'cardinality' => '-1',
  3135. 'deleted' => '0',
  3136. 'entity_types' => array(),
  3137. 'field_name' => 'field_company_distrib',
  3138. 'field_permissions' => array(
  3139. 'type' => '2',
  3140. ),
  3141. 'foreign keys' => array(
  3142. 'tid' => array(
  3143. 'columns' => array(
  3144. 'tid' => 'tid',
  3145. ),
  3146. 'table' => 'taxonomy_term_data',
  3147. ),
  3148. ),
  3149. 'indexes' => array(
  3150. 'tid' => array(
  3151. 0 => 'tid',
  3152. ),
  3153. ),
  3154. 'locked' => '0',
  3155. 'module' => 'taxonomy',
  3156. 'settings' => array(
  3157. 'allowed_values' => array(
  3158. 0 => array(
  3159. 'vocabulary' => 'company',
  3160. 'parent' => '0',
  3161. ),
  3162. ),
  3163. 'entity_translation_sync' => FALSE,
  3164. 'options_list_callback' => 'i18n_taxonomy_allowed_values',
  3165. 'profile2_private' => FALSE,
  3166. ),
  3167. 'translatable' => '0',
  3168. 'type' => 'taxonomy_term_reference',
  3169. ),
  3170. 'field_instance' => array(
  3171. 'bundle' => 'materiau',
  3172. 'default_value' => NULL,
  3173. 'deleted' => '0',
  3174. 'description' => '',
  3175. 'display' => array(
  3176. 'bookmark' => array(
  3177. 'label' => 'above',
  3178. 'settings' => array(),
  3179. 'type' => 'hidden',
  3180. 'weight' => '4',
  3181. ),
  3182. 'cardbig' => array(
  3183. 'label' => 'inline',
  3184. 'module' => 'tode',
  3185. 'settings' => array(
  3186. 'viewmode' => 'cardbig',
  3187. ),
  3188. 'type' => 'tode',
  3189. 'weight' => '5',
  3190. ),
  3191. 'cardfull' => array(
  3192. 'label' => 'inline',
  3193. 'module' => 'tode',
  3194. 'settings' => array(
  3195. 'viewmode' => 'cardfull',
  3196. ),
  3197. 'type' => 'tode',
  3198. 'weight' => '19',
  3199. ),
  3200. 'cardmedium' => array(
  3201. 'label' => 'above',
  3202. 'module' => 'tode',
  3203. 'settings' => array(
  3204. 'viewmode' => 'cardmedium',
  3205. ),
  3206. 'type' => 'tode',
  3207. 'weight' => '10',
  3208. ),
  3209. 'cardsmall' => array(
  3210. 'label' => 'above',
  3211. 'settings' => array(),
  3212. 'type' => 'hidden',
  3213. 'weight' => '4',
  3214. ),
  3215. 'default' => array(
  3216. 'label' => 'inline',
  3217. 'module' => 'i18n_taxonomy',
  3218. 'settings' => array(),
  3219. 'type' => 'i18n_taxonomy_term_reference_link',
  3220. 'weight' => '18',
  3221. ),
  3222. 'print' => array(
  3223. 'label' => 'above',
  3224. 'module' => 'tode',
  3225. 'settings' => array(
  3226. 'viewmode' => 'print',
  3227. ),
  3228. 'type' => 'tode',
  3229. 'weight' => '5',
  3230. ),
  3231. 'teaser' => array(
  3232. 'label' => 'above',
  3233. 'settings' => array(),
  3234. 'type' => 'hidden',
  3235. 'weight' => '5',
  3236. ),
  3237. ),
  3238. 'entity_type' => 'node',
  3239. 'field_name' => 'field_company_distrib',
  3240. 'label' => 'Distributeurs',
  3241. 'required' => 0,
  3242. 'settings' => array(
  3243. 'entity_translation_sync' => FALSE,
  3244. 'user_register_form' => FALSE,
  3245. ),
  3246. 'widget' => array(
  3247. 'active' => 1,
  3248. 'module' => 'autocomplete_deluxe',
  3249. 'settings' => array(
  3250. 'autocomplete_deluxe_path' => 'autocomplete_deluxe/taxonomy',
  3251. 'content_taxonomy_autocomplete_new_terms' => 'deny',
  3252. 'size' => '60',
  3253. ),
  3254. 'type' => 'autocomplete_deluxe_taxonomy',
  3255. 'weight' => '25',
  3256. ),
  3257. ),
  3258. );
  3259. // Exported field: 'node-materiau-field_company_fab'.
  3260. $fields['node-materiau-field_company_fab'] = array(
  3261. 'field_config' => array(
  3262. 'active' => '1',
  3263. 'cardinality' => '-1',
  3264. 'deleted' => '0',
  3265. 'entity_types' => array(),
  3266. 'field_name' => 'field_company_fab',
  3267. 'field_permissions' => array(
  3268. 'type' => '2',
  3269. ),
  3270. 'foreign keys' => array(
  3271. 'tid' => array(
  3272. 'columns' => array(
  3273. 'tid' => 'tid',
  3274. ),
  3275. 'table' => 'taxonomy_term_data',
  3276. ),
  3277. ),
  3278. 'indexes' => array(
  3279. 'tid' => array(
  3280. 0 => 'tid',
  3281. ),
  3282. ),
  3283. 'locked' => '0',
  3284. 'module' => 'taxonomy',
  3285. 'settings' => array(
  3286. 'allowed_values' => array(
  3287. 0 => array(
  3288. 'vocabulary' => 'company',
  3289. 'parent' => '0',
  3290. ),
  3291. ),
  3292. 'entity_translation_sync' => FALSE,
  3293. 'options_list_callback' => 'i18n_taxonomy_allowed_values',
  3294. 'profile2_private' => FALSE,
  3295. ),
  3296. 'translatable' => '0',
  3297. 'type' => 'taxonomy_term_reference',
  3298. ),
  3299. 'field_instance' => array(
  3300. 'bundle' => 'materiau',
  3301. 'default_value' => NULL,
  3302. 'deleted' => '0',
  3303. 'description' => '',
  3304. 'display' => array(
  3305. 'bookmark' => array(
  3306. 'label' => 'above',
  3307. 'settings' => array(),
  3308. 'type' => 'hidden',
  3309. 'weight' => '9',
  3310. ),
  3311. 'cardbig' => array(
  3312. 'label' => 'inline',
  3313. 'module' => 'tode',
  3314. 'settings' => array(
  3315. 'viewmode' => 'cardbig',
  3316. ),
  3317. 'type' => 'tode',
  3318. 'weight' => '4',
  3319. ),
  3320. 'cardfull' => array(
  3321. 'label' => 'inline',
  3322. 'module' => 'tode',
  3323. 'settings' => array(
  3324. 'viewmode' => 'cardfull',
  3325. ),
  3326. 'type' => 'tode',
  3327. 'weight' => '18',
  3328. ),
  3329. 'cardmedium' => array(
  3330. 'label' => 'above',
  3331. 'module' => 'tode',
  3332. 'settings' => array(
  3333. 'viewmode' => 'cardmedium',
  3334. ),
  3335. 'type' => 'tode',
  3336. 'weight' => '9',
  3337. ),
  3338. 'cardsmall' => array(
  3339. 'label' => 'above',
  3340. 'settings' => array(),
  3341. 'type' => 'hidden',
  3342. 'weight' => '9',
  3343. ),
  3344. 'default' => array(
  3345. 'label' => 'inline',
  3346. 'module' => 'i18n_taxonomy',
  3347. 'settings' => array(),
  3348. 'type' => 'i18n_taxonomy_term_reference_link',
  3349. 'weight' => '17',
  3350. ),
  3351. 'print' => array(
  3352. 'label' => 'above',
  3353. 'module' => 'tode',
  3354. 'settings' => array(
  3355. 'viewmode' => 'print',
  3356. ),
  3357. 'type' => 'tode',
  3358. 'weight' => '4',
  3359. ),
  3360. 'teaser' => array(
  3361. 'label' => 'above',
  3362. 'settings' => array(),
  3363. 'type' => 'hidden',
  3364. 'weight' => '6',
  3365. ),
  3366. ),
  3367. 'entity_type' => 'node',
  3368. 'field_name' => 'field_company_fab',
  3369. 'label' => 'Fabricants',
  3370. 'required' => 0,
  3371. 'settings' => array(
  3372. 'entity_translation_sync' => FALSE,
  3373. 'user_register_form' => FALSE,
  3374. ),
  3375. 'widget' => array(
  3376. 'active' => 1,
  3377. 'module' => 'autocomplete_deluxe',
  3378. 'settings' => array(
  3379. 'autocomplete_deluxe_path' => 'autocomplete_deluxe/taxonomy',
  3380. 'content_taxonomy_autocomplete_new_terms' => 'deny',
  3381. 'size' => '60',
  3382. ),
  3383. 'type' => 'autocomplete_deluxe_taxonomy',
  3384. 'weight' => '24',
  3385. ),
  3386. ),
  3387. );
  3388. // Exported field: 'node-materiau-field_description'.
  3389. $fields['node-materiau-field_description'] = array(
  3390. 'field_config' => array(
  3391. 'active' => '1',
  3392. 'cardinality' => '1',
  3393. 'deleted' => '0',
  3394. 'entity_types' => array(),
  3395. 'field_name' => 'field_description',
  3396. 'field_permissions' => array(
  3397. 'type' => '2',
  3398. ),
  3399. 'foreign keys' => array(
  3400. 'format' => array(
  3401. 'columns' => array(
  3402. 'format' => 'format',
  3403. ),
  3404. 'table' => 'filter_format',
  3405. ),
  3406. ),
  3407. 'indexes' => array(
  3408. 'format' => array(
  3409. 0 => 'format',
  3410. ),
  3411. ),
  3412. 'locked' => '0',
  3413. 'module' => 'text',
  3414. 'settings' => array(
  3415. 'entity_translation_sync' => FALSE,
  3416. 'profile2_private' => FALSE,
  3417. ),
  3418. 'translatable' => '1',
  3419. 'type' => 'text_with_summary',
  3420. ),
  3421. 'field_instance' => array(
  3422. 'bundle' => 'materiau',
  3423. 'default_value' => NULL,
  3424. 'deleted' => '0',
  3425. 'description' => '',
  3426. 'display' => array(
  3427. 'bookmark' => array(
  3428. 'label' => 'above',
  3429. 'settings' => array(),
  3430. 'type' => 'hidden',
  3431. 'weight' => '13',
  3432. ),
  3433. 'cardbig' => array(
  3434. 'label' => 'hidden',
  3435. 'module' => 'text',
  3436. 'settings' => array(),
  3437. 'type' => 'text_default',
  3438. 'weight' => '2',
  3439. ),
  3440. 'cardfull' => array(
  3441. 'label' => 'hidden',
  3442. 'module' => 'text',
  3443. 'settings' => array(),
  3444. 'type' => 'text_default',
  3445. 'weight' => '16',
  3446. ),
  3447. 'cardmedium' => array(
  3448. 'label' => 'hidden',
  3449. 'module' => 'text',
  3450. 'settings' => array(),
  3451. 'type' => 'text_default',
  3452. 'weight' => '11',
  3453. ),
  3454. 'cardsmall' => array(
  3455. 'label' => 'above',
  3456. 'settings' => array(),
  3457. 'type' => 'hidden',
  3458. 'weight' => '12',
  3459. ),
  3460. 'default' => array(
  3461. 'label' => 'hidden',
  3462. 'module' => 'text',
  3463. 'settings' => array(),
  3464. 'type' => 'text_default',
  3465. 'weight' => '0',
  3466. ),
  3467. 'print' => array(
  3468. 'label' => 'hidden',
  3469. 'module' => 'text',
  3470. 'settings' => array(),
  3471. 'type' => 'text_default',
  3472. 'weight' => '2',
  3473. ),
  3474. 'teaser' => array(
  3475. 'label' => 'hidden',
  3476. 'settings' => array(),
  3477. 'type' => 'hidden',
  3478. 'weight' => '4',
  3479. ),
  3480. ),
  3481. 'entity_type' => 'node',
  3482. 'field_name' => 'field_description',
  3483. 'label' => 'Description',
  3484. 'required' => 0,
  3485. 'settings' => array(
  3486. 'display_summary' => 1,
  3487. 'entity_translation_sync' => FALSE,
  3488. 'text_processing' => '1',
  3489. 'user_register_form' => FALSE,
  3490. ),
  3491. 'widget' => array(
  3492. 'active' => 1,
  3493. 'module' => 'text',
  3494. 'settings' => array(
  3495. 'rows' => '20',
  3496. 'summary_rows' => 5,
  3497. ),
  3498. 'type' => 'text_textarea_with_summary',
  3499. 'weight' => '-3',
  3500. ),
  3501. ),
  3502. );
  3503. // Exported field: 'node-materiau-field_famille'.
  3504. $fields['node-materiau-field_famille'] = array(
  3505. 'field_config' => array(
  3506. 'active' => '1',
  3507. 'cardinality' => '1',
  3508. 'deleted' => '0',
  3509. 'entity_types' => array(),
  3510. 'field_name' => 'field_famille',
  3511. 'field_permissions' => array(
  3512. 'type' => '2',
  3513. ),
  3514. 'foreign keys' => array(),
  3515. 'indexes' => array(
  3516. 'value' => array(
  3517. 0 => 'value',
  3518. ),
  3519. ),
  3520. 'locked' => '0',
  3521. 'module' => 'list',
  3522. 'settings' => array(
  3523. 'allowed_values' => array(
  3524. 'W' => 'Bois (W)',
  3525. 'T' => 'Textile (T)',
  3526. 'R' => 'Plastique (R)',
  3527. 'P' => 'Papier (P)',
  3528. 'C' => 'Composite (C)',
  3529. 'M' => 'Métal (M)',
  3530. 'F' => 'Céramique (F)',
  3531. 'G' => 'Verre (G)',
  3532. 'S' => 'Béton/Pierre (S)',
  3533. 'O' => 'Autre (O)',
  3534. ),
  3535. 'allowed_values_function' => '',
  3536. 'entity_translation_sync' => FALSE,
  3537. 'profile2_private' => FALSE,
  3538. ),
  3539. 'translatable' => '0',
  3540. 'type' => 'list_text',
  3541. ),
  3542. 'field_instance' => array(
  3543. 'bundle' => 'materiau',
  3544. 'default_value' => NULL,
  3545. 'deleted' => '0',
  3546. 'description' => '',
  3547. 'display' => array(
  3548. 'bookmark' => array(
  3549. 'label' => 'above',
  3550. 'settings' => array(),
  3551. 'type' => 'hidden',
  3552. 'weight' => '3',
  3553. ),
  3554. 'cardbig' => array(
  3555. 'label' => 'above',
  3556. 'settings' => array(),
  3557. 'type' => 'hidden',
  3558. 'weight' => '8',
  3559. ),
  3560. 'cardfull' => array(
  3561. 'label' => 'above',
  3562. 'settings' => array(),
  3563. 'type' => 'hidden',
  3564. 'weight' => '7',
  3565. ),
  3566. 'cardmedium' => array(
  3567. 'label' => 'above',
  3568. 'settings' => array(),
  3569. 'type' => 'hidden',
  3570. 'weight' => '6',
  3571. ),
  3572. 'cardsmall' => array(
  3573. 'label' => 'above',
  3574. 'settings' => array(),
  3575. 'type' => 'hidden',
  3576. 'weight' => '3',
  3577. ),
  3578. 'default' => array(
  3579. 'label' => 'above',
  3580. 'module' => 'list',
  3581. 'settings' => array(),
  3582. 'type' => 'list_default',
  3583. 'weight' => '19',
  3584. ),
  3585. 'print' => array(
  3586. 'label' => 'above',
  3587. 'settings' => array(),
  3588. 'type' => 'hidden',
  3589. 'weight' => '8',
  3590. ),
  3591. 'teaser' => array(
  3592. 'label' => 'above',
  3593. 'settings' => array(),
  3594. 'type' => 'hidden',
  3595. 'weight' => '7',
  3596. ),
  3597. ),
  3598. 'entity_type' => 'node',
  3599. 'field_name' => 'field_famille',
  3600. 'label' => 'Famille',
  3601. 'required' => 1,
  3602. 'settings' => array(
  3603. 'entity_translation_sync' => FALSE,
  3604. 'user_register_form' => FALSE,
  3605. ),
  3606. 'widget' => array(
  3607. 'active' => 1,
  3608. 'module' => 'options',
  3609. 'settings' => array(),
  3610. 'type' => 'options_select',
  3611. 'weight' => '1',
  3612. ),
  3613. ),
  3614. );
  3615. // Exported field: 'node-materiau-field_identifiant'.
  3616. $fields['node-materiau-field_identifiant'] = array(
  3617. 'field_config' => array(
  3618. 'active' => '1',
  3619. 'cardinality' => '1',
  3620. 'deleted' => '0',
  3621. 'entity_types' => array(),
  3622. 'field_name' => 'field_identifiant',
  3623. 'field_permissions' => array(
  3624. 'type' => '2',
  3625. ),
  3626. 'foreign keys' => array(),
  3627. 'indexes' => array(),
  3628. 'locked' => '0',
  3629. 'module' => 'computed_field',
  3630. 'settings' => array(
  3631. 'code' => '$entity_field[0][\'value\'] = "";',
  3632. 'database' => array(
  3633. 'data_default' => '',
  3634. 'data_index' => 0,
  3635. 'data_length' => '32',
  3636. 'data_not_NULL' => 0,
  3637. 'data_precision' => '10',
  3638. 'data_scale' => '2',
  3639. 'data_size' => 'normal',
  3640. 'data_type' => 'varchar',
  3641. ),
  3642. 'display_format' => '$display_output = $entity_field_item[\'value\'];',
  3643. 'entity_translation_sync' => FALSE,
  3644. 'profile2_private' => FALSE,
  3645. 'store' => 1,
  3646. ),
  3647. 'translatable' => '0',
  3648. 'type' => 'computed',
  3649. ),
  3650. 'field_instance' => array(
  3651. 'bundle' => 'materiau',
  3652. 'deleted' => '0',
  3653. 'description' => '',
  3654. 'display' => array(
  3655. 'bookmark' => array(
  3656. 'label' => 'above',
  3657. 'settings' => array(),
  3658. 'type' => 'hidden',
  3659. 'weight' => '2',
  3660. ),
  3661. 'cardbig' => array(
  3662. 'label' => 'above',
  3663. 'settings' => array(),
  3664. 'type' => 'hidden',
  3665. 'weight' => '7',
  3666. ),
  3667. 'cardfull' => array(
  3668. 'label' => 'above',
  3669. 'settings' => array(),
  3670. 'type' => 'hidden',
  3671. 'weight' => '3',
  3672. ),
  3673. 'cardmedium' => array(
  3674. 'label' => 'above',
  3675. 'settings' => array(),
  3676. 'type' => 'hidden',
  3677. 'weight' => '7',
  3678. ),
  3679. 'cardsmall' => array(
  3680. 'label' => 'above',
  3681. 'settings' => array(),
  3682. 'type' => 'hidden',
  3683. 'weight' => '5',
  3684. ),
  3685. 'default' => array(
  3686. 'label' => 'above',
  3687. 'module' => 'computed_field',
  3688. 'settings' => array(),
  3689. 'type' => 'computed_field_plain',
  3690. 'weight' => '20',
  3691. ),
  3692. 'print' => array(
  3693. 'label' => 'above',
  3694. 'settings' => array(),
  3695. 'type' => 'hidden',
  3696. 'weight' => '9',
  3697. ),
  3698. 'teaser' => array(
  3699. 'label' => 'above',
  3700. 'settings' => array(),
  3701. 'type' => 'hidden',
  3702. 'weight' => '8',
  3703. ),
  3704. ),
  3705. 'entity_type' => 'node',
  3706. 'field_name' => 'field_identifiant',
  3707. 'label' => 'Identifiant',
  3708. 'required' => 0,
  3709. 'settings' => array(
  3710. 'entity_translation_sync' => FALSE,
  3711. 'user_register_form' => FALSE,
  3712. ),
  3713. 'widget' => array(
  3714. 'active' => 0,
  3715. 'module' => 'computed_field',
  3716. 'settings' => array(),
  3717. 'type' => 'computed',
  3718. 'weight' => '2',
  3719. ),
  3720. ),
  3721. );
  3722. // Exported field: 'node-materiau-field_localisation'.
  3723. $fields['node-materiau-field_localisation'] = array(
  3724. 'field_config' => array(
  3725. 'active' => '1',
  3726. 'cardinality' => '1',
  3727. 'deleted' => '0',
  3728. 'entity_types' => array(),
  3729. 'field_name' => 'field_localisation',
  3730. 'field_permissions' => array(
  3731. 'type' => '2',
  3732. ),
  3733. 'foreign keys' => array(
  3734. 'format' => array(
  3735. 'columns' => array(
  3736. 'format' => 'format',
  3737. ),
  3738. 'table' => 'filter_format',
  3739. ),
  3740. ),
  3741. 'indexes' => array(
  3742. 'format' => array(
  3743. 0 => 'format',
  3744. ),
  3745. ),
  3746. 'locked' => '0',
  3747. 'module' => 'text',
  3748. 'settings' => array(
  3749. 'entity_translation_sync' => FALSE,
  3750. 'max_length' => '255',
  3751. 'profile2_private' => FALSE,
  3752. ),
  3753. 'translatable' => '0',
  3754. 'type' => 'text',
  3755. ),
  3756. 'field_instance' => array(
  3757. 'bundle' => 'materiau',
  3758. 'default_value' => NULL,
  3759. 'deleted' => '0',
  3760. 'description' => '',
  3761. 'display' => array(
  3762. 'bookmark' => array(
  3763. 'label' => 'above',
  3764. 'settings' => array(),
  3765. 'type' => 'hidden',
  3766. 'weight' => '17',
  3767. ),
  3768. 'cardbig' => array(
  3769. 'label' => 'hidden',
  3770. 'module' => 'text',
  3771. 'settings' => array(),
  3772. 'type' => 'text_default',
  3773. 'weight' => '8',
  3774. ),
  3775. 'cardfull' => array(
  3776. 'label' => 'hidden',
  3777. 'module' => 'text',
  3778. 'settings' => array(),
  3779. 'type' => 'text_default',
  3780. 'weight' => '19',
  3781. ),
  3782. 'cardmedium' => array(
  3783. 'label' => 'hidden',
  3784. 'module' => 'text',
  3785. 'settings' => array(),
  3786. 'type' => 'text_default',
  3787. 'weight' => '21',
  3788. ),
  3789. 'cardsmall' => array(
  3790. 'label' => 'hidden',
  3791. 'module' => 'text',
  3792. 'settings' => array(),
  3793. 'type' => 'text_plain',
  3794. 'weight' => '8',
  3795. ),
  3796. 'default' => array(
  3797. 'label' => 'hidden',
  3798. 'module' => 'text',
  3799. 'settings' => array(),
  3800. 'type' => 'text_default',
  3801. 'weight' => '14',
  3802. ),
  3803. 'print' => array(
  3804. 'label' => 'above',
  3805. 'settings' => array(),
  3806. 'type' => 'hidden',
  3807. 'weight' => '16',
  3808. ),
  3809. 'teaser' => array(
  3810. 'label' => 'above',
  3811. 'settings' => array(),
  3812. 'type' => 'hidden',
  3813. 'weight' => '16',
  3814. ),
  3815. ),
  3816. 'entity_type' => 'node',
  3817. 'field_name' => 'field_localisation',
  3818. 'label' => 'Localisation',
  3819. 'required' => 0,
  3820. 'settings' => array(
  3821. 'entity_translation_sync' => FALSE,
  3822. 'text_processing' => '0',
  3823. 'user_register_form' => FALSE,
  3824. ),
  3825. 'widget' => array(
  3826. 'active' => 1,
  3827. 'module' => 'text',
  3828. 'settings' => array(
  3829. 'size' => '60',
  3830. ),
  3831. 'type' => 'text_textfield',
  3832. 'weight' => '4',
  3833. ),
  3834. ),
  3835. );
  3836. // Exported field: 'node-materiau-field_materiau_image'.
  3837. $fields['node-materiau-field_materiau_image'] = array(
  3838. 'field_config' => array(
  3839. 'active' => '1',
  3840. 'cardinality' => '-1',
  3841. 'deleted' => '0',
  3842. 'entity_types' => array(),
  3843. 'field_name' => 'field_materiau_image',
  3844. 'field_permissions' => array(
  3845. 'type' => '0',
  3846. ),
  3847. 'foreign keys' => array(
  3848. 'fid' => array(
  3849. 'columns' => array(
  3850. 'fid' => 'fid',
  3851. ),
  3852. 'table' => 'file_managed',
  3853. ),
  3854. ),
  3855. 'indexes' => array(
  3856. 'fid' => array(
  3857. 0 => 'fid',
  3858. ),
  3859. ),
  3860. 'locked' => '0',
  3861. 'module' => 'image',
  3862. 'settings' => array(
  3863. 'default_image' => 0,
  3864. 'entity_translation_sync' => array(
  3865. 0 => 'fid',
  3866. ),
  3867. 'profile2_private' => FALSE,
  3868. 'uri_scheme' => 'public',
  3869. ),
  3870. 'translatable' => '0',
  3871. 'type' => 'image',
  3872. ),
  3873. 'field_instance' => array(
  3874. 'bundle' => 'materiau',
  3875. 'deleted' => '0',
  3876. 'description' => '',
  3877. 'display' => array(
  3878. 'bookmark' => array(
  3879. 'label' => 'hidden',
  3880. 'module' => 'image',
  3881. 'settings' => array(
  3882. 'image_link' => '',
  3883. 'image_style' => 'card-bookmark',
  3884. ),
  3885. 'type' => 'image',
  3886. 'weight' => '1',
  3887. ),
  3888. 'cardbig' => array(
  3889. 'label' => 'hidden',
  3890. 'module' => 'image',
  3891. 'settings' => array(
  3892. 'image_link' => '',
  3893. 'image_style' => 'card-big',
  3894. ),
  3895. 'type' => 'image',
  3896. 'weight' => '1',
  3897. ),
  3898. 'cardfull' => array(
  3899. 'label' => 'hidden',
  3900. 'module' => 'image',
  3901. 'settings' => array(
  3902. 'image_link' => '',
  3903. 'image_style' => 'card-full',
  3904. ),
  3905. 'type' => 'image',
  3906. 'weight' => '1',
  3907. ),
  3908. 'cardmedium' => array(
  3909. 'label' => 'hidden',
  3910. 'module' => 'image',
  3911. 'settings' => array(
  3912. 'image_link' => '',
  3913. 'image_style' => 'card-medium',
  3914. ),
  3915. 'type' => 'image',
  3916. 'weight' => '18',
  3917. ),
  3918. 'cardsmall' => array(
  3919. 'label' => 'hidden',
  3920. 'module' => 'image',
  3921. 'settings' => array(
  3922. 'image_link' => '',
  3923. 'image_style' => 'card-small',
  3924. ),
  3925. 'type' => 'image',
  3926. 'weight' => '2',
  3927. ),
  3928. 'default' => array(
  3929. 'label' => 'hidden',
  3930. 'module' => 'image',
  3931. 'settings' => array(
  3932. 'image_link' => '',
  3933. 'image_style' => 'large',
  3934. ),
  3935. 'type' => 'image',
  3936. 'weight' => '6',
  3937. ),
  3938. 'print' => array(
  3939. 'label' => 'hidden',
  3940. 'module' => 'image',
  3941. 'settings' => array(
  3942. 'image_link' => '',
  3943. 'image_style' => 'pdf',
  3944. ),
  3945. 'type' => 'image',
  3946. 'weight' => '3',
  3947. ),
  3948. 'teaser' => array(
  3949. 'label' => 'above',
  3950. 'settings' => array(),
  3951. 'type' => 'hidden',
  3952. 'weight' => '13',
  3953. ),
  3954. ),
  3955. 'entity_type' => 'node',
  3956. 'field_name' => 'field_materiau_image',
  3957. 'label' => 'Image',
  3958. 'required' => 0,
  3959. 'settings' => array(
  3960. 'alt_field' => 0,
  3961. 'default_image' => 0,
  3962. 'entity_translation_sync' => FALSE,
  3963. 'file_directory' => 'materiaux',
  3964. 'file_extensions' => 'png gif jpg jpeg',
  3965. 'max_filesize' => '',
  3966. 'max_resolution' => '',
  3967. 'min_resolution' => '',
  3968. 'title_field' => 1,
  3969. 'user_register_form' => FALSE,
  3970. ),
  3971. 'widget' => array(
  3972. 'active' => 1,
  3973. 'module' => 'image',
  3974. 'settings' => array(
  3975. 'preview_image_style' => 'medium',
  3976. 'progress_indicator' => 'throbber',
  3977. ),
  3978. 'type' => 'image_image',
  3979. 'weight' => '11',
  3980. ),
  3981. ),
  3982. );
  3983. // Exported field: 'node-materiau-field_materiau_ref'.
  3984. $fields['node-materiau-field_materiau_ref'] = array(
  3985. 'field_config' => array(
  3986. 'active' => '1',
  3987. 'cardinality' => '-1',
  3988. 'deleted' => '0',
  3989. 'entity_types' => array(),
  3990. 'field_name' => 'field_materiau_ref',
  3991. 'field_permissions' => array(
  3992. 'type' => '2',
  3993. ),
  3994. 'foreign keys' => array(
  3995. 'node' => array(
  3996. 'columns' => array(
  3997. 'target_id' => 'nid',
  3998. ),
  3999. 'table' => 'node',
  4000. ),
  4001. ),
  4002. 'indexes' => array(
  4003. 'target_id' => array(
  4004. 0 => 'target_id',
  4005. ),
  4006. ),
  4007. 'locked' => '0',
  4008. 'module' => 'entityreference',
  4009. 'settings' => array(
  4010. 'entity_translation_sync' => FALSE,
  4011. 'handler' => 'views',
  4012. 'handler_settings' => array(
  4013. 'behaviors' => array(
  4014. 'views-select-list' => array(
  4015. 'status' => 0,
  4016. ),
  4017. ),
  4018. 'view' => array(
  4019. 'args' => array(),
  4020. 'display_name' => 'entityreference_1',
  4021. 'view_name' => 'entity_reference_materiaux_breves',
  4022. ),
  4023. ),
  4024. 'handler_submit' => 'Change handler',
  4025. 'profile2_private' => FALSE,
  4026. 'target_type' => 'node',
  4027. ),
  4028. 'translatable' => '0',
  4029. 'type' => 'entityreference',
  4030. ),
  4031. 'field_instance' => array(
  4032. 'bundle' => 'materiau',
  4033. 'default_value' => NULL,
  4034. 'deleted' => '0',
  4035. 'description' => '',
  4036. 'display' => array(
  4037. 'bookmark' => array(
  4038. 'label' => 'above',
  4039. 'settings' => array(),
  4040. 'type' => 'hidden',
  4041. 'weight' => '6',
  4042. ),
  4043. 'cardbig' => array(
  4044. 'label' => 'hidden',
  4045. 'settings' => array(),
  4046. 'type' => 'hidden',
  4047. 'weight' => '6',
  4048. ),
  4049. 'cardfull' => array(
  4050. 'label' => 'above',
  4051. 'settings' => array(),
  4052. 'type' => 'hidden',
  4053. 'weight' => '4',
  4054. ),
  4055. 'cardmedium' => array(
  4056. 'label' => 'hidden',
  4057. 'settings' => array(),
  4058. 'type' => 'hidden',
  4059. 'weight' => '12',
  4060. ),
  4061. 'cardsmall' => array(
  4062. 'label' => 'above',
  4063. 'settings' => array(),
  4064. 'type' => 'hidden',
  4065. 'weight' => '6',
  4066. ),
  4067. 'default' => array(
  4068. 'label' => 'above',
  4069. 'module' => 'entityreference',
  4070. 'settings' => array(
  4071. 'link' => FALSE,
  4072. ),
  4073. 'type' => 'entityreference_label',
  4074. 'weight' => '22',
  4075. ),
  4076. 'print' => array(
  4077. 'label' => 'above',
  4078. 'settings' => array(),
  4079. 'type' => 'hidden',
  4080. 'weight' => '11',
  4081. ),
  4082. 'teaser' => array(
  4083. 'label' => 'above',
  4084. 'settings' => array(),
  4085. 'type' => 'hidden',
  4086. 'weight' => '10',
  4087. ),
  4088. ),
  4089. 'entity_type' => 'node',
  4090. 'field_name' => 'field_materiau_ref',
  4091. 'label' => 'Materiau(x) lié(s)',
  4092. 'required' => 0,
  4093. 'settings' => array(
  4094. 'entity_translation_sync' => FALSE,
  4095. 'user_register_form' => FALSE,
  4096. ),
  4097. 'widget' => array(
  4098. 'active' => 1,
  4099. 'module' => 'entityreference',
  4100. 'settings' => array(
  4101. 'match_operator' => 'CONTAINS',
  4102. 'path' => '',
  4103. 'size' => '60',
  4104. ),
  4105. 'type' => 'entityreference_autocomplete',
  4106. 'weight' => '27',
  4107. ),
  4108. ),
  4109. );
  4110. // Exported field: 'node-materiau-field_memo'.
  4111. $fields['node-materiau-field_memo'] = array(
  4112. 'field_config' => array(
  4113. 'active' => '1',
  4114. 'cardinality' => '1',
  4115. 'deleted' => '0',
  4116. 'entity_types' => array(),
  4117. 'field_name' => 'field_memo',
  4118. 'field_permissions' => array(
  4119. 'type' => '2',
  4120. ),
  4121. 'foreign keys' => array(
  4122. 'format' => array(
  4123. 'columns' => array(
  4124. 'format' => 'format',
  4125. ),
  4126. 'table' => 'filter_format',
  4127. ),
  4128. ),
  4129. 'indexes' => array(
  4130. 'format' => array(
  4131. 0 => 'format',
  4132. ),
  4133. ),
  4134. 'locked' => '0',
  4135. 'module' => 'text',
  4136. 'settings' => array(
  4137. 'entity_translation_sync' => FALSE,
  4138. 'profile2_private' => TRUE,
  4139. ),
  4140. 'translatable' => '0',
  4141. 'type' => 'text_long',
  4142. ),
  4143. 'field_instance' => array(
  4144. 'bundle' => 'materiau',
  4145. 'default_value' => NULL,
  4146. 'deleted' => '0',
  4147. 'description' => '',
  4148. 'display' => array(
  4149. 'bookmark' => array(
  4150. 'label' => 'above',
  4151. 'settings' => array(),
  4152. 'type' => 'hidden',
  4153. 'weight' => '14',
  4154. ),
  4155. 'cardbig' => array(
  4156. 'label' => 'above',
  4157. 'settings' => array(),
  4158. 'type' => 'hidden',
  4159. 'weight' => '11',
  4160. ),
  4161. 'cardfull' => array(
  4162. 'label' => 'above',
  4163. 'settings' => array(),
  4164. 'type' => 'hidden',
  4165. 'weight' => '9',
  4166. ),
  4167. 'cardmedium' => array(
  4168. 'label' => 'above',
  4169. 'settings' => array(),
  4170. 'type' => 'hidden',
  4171. 'weight' => '9',
  4172. ),
  4173. 'cardsmall' => array(
  4174. 'label' => 'above',
  4175. 'settings' => array(),
  4176. 'type' => 'hidden',
  4177. 'weight' => '13',
  4178. ),
  4179. 'default' => array(
  4180. 'label' => 'hidden',
  4181. 'settings' => array(),
  4182. 'type' => 'hidden',
  4183. 'weight' => '8',
  4184. ),
  4185. 'print' => array(
  4186. 'label' => 'above',
  4187. 'settings' => array(),
  4188. 'type' => 'hidden',
  4189. 'weight' => '15',
  4190. ),
  4191. 'teaser' => array(
  4192. 'label' => 'above',
  4193. 'settings' => array(),
  4194. 'type' => 'hidden',
  4195. 'weight' => '15',
  4196. ),
  4197. ),
  4198. 'entity_type' => 'node',
  4199. 'field_name' => 'field_memo',
  4200. 'label' => 'Mémo',
  4201. 'required' => 0,
  4202. 'settings' => array(
  4203. 'entity_translation_sync' => FALSE,
  4204. 'text_processing' => '0',
  4205. 'user_register_form' => FALSE,
  4206. ),
  4207. 'widget' => array(
  4208. 'active' => 1,
  4209. 'module' => 'text',
  4210. 'settings' => array(
  4211. 'rows' => '10',
  4212. ),
  4213. 'type' => 'text_textarea',
  4214. 'weight' => '7',
  4215. ),
  4216. ),
  4217. );
  4218. // Exported field: 'node-materiau-field_nature_titre'.
  4219. $fields['node-materiau-field_nature_titre'] = array(
  4220. 'field_config' => array(
  4221. 'active' => '1',
  4222. 'cardinality' => '1',
  4223. 'deleted' => '0',
  4224. 'entity_types' => array(),
  4225. 'field_name' => 'field_nature_titre',
  4226. 'foreign keys' => array(
  4227. 'format' => array(
  4228. 'columns' => array(
  4229. 'format' => 'format',
  4230. ),
  4231. 'table' => 'filter_format',
  4232. ),
  4233. ),
  4234. 'indexes' => array(
  4235. 'format' => array(
  4236. 0 => 'format',
  4237. ),
  4238. ),
  4239. 'locked' => '0',
  4240. 'module' => 'text',
  4241. 'settings' => array(
  4242. 'entity_translation_sync' => FALSE,
  4243. 'max_length' => '255',
  4244. ),
  4245. 'translatable' => '1',
  4246. 'type' => 'text',
  4247. ),
  4248. 'field_instance' => array(
  4249. 'bundle' => 'materiau',
  4250. 'default_value' => NULL,
  4251. 'deleted' => '0',
  4252. 'description' => '',
  4253. 'display' => array(
  4254. 'bookmark' => array(
  4255. 'label' => 'hidden',
  4256. 'module' => 'text',
  4257. 'settings' => array(),
  4258. 'type' => 'text_default',
  4259. 'weight' => '9',
  4260. ),
  4261. 'cardbig' => array(
  4262. 'label' => 'hidden',
  4263. 'module' => 'text',
  4264. 'settings' => array(),
  4265. 'type' => 'text_plain',
  4266. 'weight' => '6',
  4267. ),
  4268. 'cardfull' => array(
  4269. 'label' => 'hidden',
  4270. 'module' => 'text',
  4271. 'settings' => array(),
  4272. 'type' => 'text_plain',
  4273. 'weight' => '17',
  4274. ),
  4275. 'cardmedium' => array(
  4276. 'label' => 'hidden',
  4277. 'module' => 'text',
  4278. 'settings' => array(),
  4279. 'type' => 'text_plain',
  4280. 'weight' => '19',
  4281. ),
  4282. 'cardsmall' => array(
  4283. 'label' => 'hidden',
  4284. 'module' => 'text',
  4285. 'settings' => array(),
  4286. 'type' => 'text_plain',
  4287. 'weight' => '6',
  4288. ),
  4289. 'default' => array(
  4290. 'label' => 'hidden',
  4291. 'module' => 'text',
  4292. 'settings' => array(),
  4293. 'type' => 'text_default',
  4294. 'weight' => '1',
  4295. ),
  4296. 'print' => array(
  4297. 'label' => 'hidden',
  4298. 'module' => 'title',
  4299. 'settings' => array(
  4300. 'title_class' => '',
  4301. 'title_link' => '',
  4302. 'title_style' => '',
  4303. ),
  4304. 'type' => 'title_linked',
  4305. 'weight' => '1',
  4306. ),
  4307. 'teaser' => array(
  4308. 'label' => 'hidden',
  4309. 'module' => 'text',
  4310. 'settings' => array(),
  4311. 'type' => 'text_default',
  4312. 'weight' => '2',
  4313. ),
  4314. ),
  4315. 'entity_type' => 'node',
  4316. 'field_name' => 'field_nature_titre',
  4317. 'label' => 'Nature Titre',
  4318. 'required' => 0,
  4319. 'settings' => array(
  4320. 'entity_translation_sync' => FALSE,
  4321. 'text_processing' => '0',
  4322. 'user_register_form' => FALSE,
  4323. ),
  4324. 'widget' => array(
  4325. 'active' => 1,
  4326. 'module' => 'text',
  4327. 'settings' => array(
  4328. 'size' => '60',
  4329. ),
  4330. 'type' => 'text_textfield',
  4331. 'weight' => '-4',
  4332. ),
  4333. ),
  4334. );
  4335. // Exported field: 'node-materiau-field_onthologie'.
  4336. $fields['node-materiau-field_onthologie'] = array(
  4337. 'field_config' => array(
  4338. 'active' => '1',
  4339. 'cardinality' => '-1',
  4340. 'deleted' => '0',
  4341. 'entity_types' => array(),
  4342. 'field_name' => 'field_onthologie',
  4343. 'field_permissions' => array(
  4344. 'type' => '0',
  4345. ),
  4346. 'foreign keys' => array(
  4347. 'tid' => array(
  4348. 'columns' => array(
  4349. 'tid' => 'tid',
  4350. ),
  4351. 'table' => 'taxonomy_term_data',
  4352. ),
  4353. ),
  4354. 'indexes' => array(
  4355. 'tid' => array(
  4356. 0 => 'tid',
  4357. ),
  4358. ),
  4359. 'locked' => '0',
  4360. 'module' => 'taxonomy',
  4361. 'settings' => array(
  4362. 'allowed_values' => array(
  4363. 0 => array(
  4364. 'vocabulary' => 'onthologie',
  4365. 'parent' => '0',
  4366. 'depth' => '',
  4367. ),
  4368. ),
  4369. 'entity_translation_sync' => FALSE,
  4370. 'options_list_callback' => 'i18n_taxonomy_allowed_values',
  4371. 'profile2_private' => FALSE,
  4372. ),
  4373. 'translatable' => '0',
  4374. 'type' => 'taxonomy_term_reference',
  4375. ),
  4376. 'field_instance' => array(
  4377. 'bundle' => 'materiau',
  4378. 'default_value' => NULL,
  4379. 'deleted' => '0',
  4380. 'description' => '',
  4381. 'display' => array(
  4382. 'bookmark' => array(
  4383. 'label' => 'above',
  4384. 'settings' => array(),
  4385. 'type' => 'hidden',
  4386. 'weight' => '10',
  4387. ),
  4388. 'cardbig' => array(
  4389. 'label' => 'above',
  4390. 'settings' => array(),
  4391. 'type' => 'hidden',
  4392. 'weight' => '10',
  4393. ),
  4394. 'cardfull' => array(
  4395. 'label' => 'above',
  4396. 'settings' => array(),
  4397. 'type' => 'hidden',
  4398. 'weight' => '8',
  4399. ),
  4400. 'cardmedium' => array(
  4401. 'label' => 'above',
  4402. 'settings' => array(),
  4403. 'type' => 'hidden',
  4404. 'weight' => '8',
  4405. ),
  4406. 'cardsmall' => array(
  4407. 'label' => 'above',
  4408. 'settings' => array(),
  4409. 'type' => 'hidden',
  4410. 'weight' => '10',
  4411. ),
  4412. 'default' => array(
  4413. 'label' => 'hidden',
  4414. 'module' => 'i18n_taxonomy',
  4415. 'settings' => array(),
  4416. 'type' => 'i18n_taxonomy_term_reference_link',
  4417. 'weight' => '16',
  4418. ),
  4419. 'print' => array(
  4420. 'label' => 'above',
  4421. 'settings' => array(),
  4422. 'type' => 'hidden',
  4423. 'weight' => '12',
  4424. ),
  4425. 'teaser' => array(
  4426. 'label' => 'above',
  4427. 'settings' => array(),
  4428. 'type' => 'hidden',
  4429. 'weight' => '11',
  4430. ),
  4431. ),
  4432. 'entity_type' => 'node',
  4433. 'field_name' => 'field_onthologie',
  4434. 'label' => 'Onthologie',
  4435. 'required' => 0,
  4436. 'settings' => array(
  4437. 'entity_translation_sync' => FALSE,
  4438. 'user_register_form' => FALSE,
  4439. ),
  4440. 'widget' => array(
  4441. 'active' => 1,
  4442. 'module' => 'term_reference_tree',
  4443. 'settings' => array(
  4444. 'cascading_selection' => 0,
  4445. 'filter_view' => '',
  4446. 'leaves_only' => 0,
  4447. 'max_depth' => '',
  4448. 'parent_term_id' => '',
  4449. 'select_parents' => 1,
  4450. 'start_minimized' => 1,
  4451. 'starting_depth' => '2',
  4452. 'token_display' => '',
  4453. 'track_list' => 1,
  4454. 'track_list_order' => 1,
  4455. ),
  4456. 'type' => 'term_reference_tree',
  4457. 'weight' => '22',
  4458. ),
  4459. ),
  4460. );
  4461. // Exported field: 'node-materiau-field_reference_materio'.
  4462. $fields['node-materiau-field_reference_materio'] = array(
  4463. 'field_config' => array(
  4464. 'active' => '1',
  4465. 'cardinality' => '1',
  4466. 'deleted' => '0',
  4467. 'entity_types' => array(),
  4468. 'field_name' => 'field_reference_materio',
  4469. 'field_permissions' => array(
  4470. 'type' => '2',
  4471. ),
  4472. 'foreign keys' => array(),
  4473. 'indexes' => array(
  4474. 'value' => array(
  4475. 0 => 'value',
  4476. ),
  4477. ),
  4478. 'locked' => '0',
  4479. 'module' => 'computed_field',
  4480. 'settings' => array(
  4481. 'code' => '$entity_field[0][\'value\'] = "";',
  4482. 'database' => array(
  4483. 'data_default' => '',
  4484. 'data_index' => 1,
  4485. 'data_length' => '255',
  4486. 'data_not_NULL' => 0,
  4487. 'data_precision' => '10',
  4488. 'data_scale' => '2',
  4489. 'data_size' => 'normal',
  4490. 'data_type' => 'varchar',
  4491. ),
  4492. 'display_format' => '$display_output = $entity_field_item[\'value\'];',
  4493. 'entity_translation_sync' => FALSE,
  4494. 'profile2_private' => FALSE,
  4495. 'store' => 1,
  4496. ),
  4497. 'translatable' => '0',
  4498. 'type' => 'computed',
  4499. ),
  4500. 'field_instance' => array(
  4501. 'bundle' => 'materiau',
  4502. 'deleted' => '0',
  4503. 'description' => '',
  4504. 'display' => array(
  4505. 'bookmark' => array(
  4506. 'label' => 'hidden',
  4507. 'module' => 'computed_field',
  4508. 'settings' => array(),
  4509. 'type' => 'computed_field_plain',
  4510. 'weight' => '10',
  4511. ),
  4512. 'cardbig' => array(
  4513. 'label' => 'hidden',
  4514. 'module' => 'computed_field',
  4515. 'settings' => array(),
  4516. 'type' => 'computed_field_plain',
  4517. 'weight' => '7',
  4518. ),
  4519. 'cardfull' => array(
  4520. 'label' => 'hidden',
  4521. 'module' => 'computed_field',
  4522. 'settings' => array(),
  4523. 'type' => 'computed_field_plain',
  4524. 'weight' => '18',
  4525. ),
  4526. 'cardmedium' => array(
  4527. 'label' => 'hidden',
  4528. 'module' => 'computed_field',
  4529. 'settings' => array(),
  4530. 'type' => 'computed_field_plain',
  4531. 'weight' => '20',
  4532. ),
  4533. 'cardsmall' => array(
  4534. 'label' => 'hidden',
  4535. 'module' => 'computed_field',
  4536. 'settings' => array(),
  4537. 'type' => 'computed_field_plain',
  4538. 'weight' => '7',
  4539. ),
  4540. 'default' => array(
  4541. 'label' => 'above',
  4542. 'module' => 'computed_field',
  4543. 'settings' => array(),
  4544. 'type' => 'computed_field_plain',
  4545. 'weight' => '21',
  4546. ),
  4547. 'print' => array(
  4548. 'label' => 'hidden',
  4549. 'settings' => array(),
  4550. 'type' => 'hidden',
  4551. 'weight' => '7',
  4552. ),
  4553. 'teaser' => array(
  4554. 'label' => 'hidden',
  4555. 'module' => 'computed_field',
  4556. 'settings' => array(),
  4557. 'type' => 'computed_field_unsanitized',
  4558. 'weight' => '1',
  4559. ),
  4560. ),
  4561. 'entity_type' => 'node',
  4562. 'field_name' => 'field_reference_materio',
  4563. 'label' => 'Référence Materio',
  4564. 'required' => 0,
  4565. 'settings' => array(
  4566. 'entity_translation_sync' => FALSE,
  4567. 'user_register_form' => FALSE,
  4568. ),
  4569. 'widget' => array(
  4570. 'active' => 0,
  4571. 'module' => 'computed_field',
  4572. 'settings' => array(),
  4573. 'type' => 'computed',
  4574. 'weight' => '3',
  4575. ),
  4576. ),
  4577. );
  4578. // Exported field: 'node-materiau-field_tags_libres'.
  4579. $fields['node-materiau-field_tags_libres'] = array(
  4580. 'field_config' => array(
  4581. 'active' => '1',
  4582. 'cardinality' => '-1',
  4583. 'deleted' => '0',
  4584. 'entity_types' => array(),
  4585. 'field_name' => 'field_tags_libres',
  4586. 'field_permissions' => array(
  4587. 'type' => '0',
  4588. ),
  4589. 'foreign keys' => array(
  4590. 'tid' => array(
  4591. 'columns' => array(
  4592. 'tid' => 'tid',
  4593. ),
  4594. 'table' => 'taxonomy_term_data',
  4595. ),
  4596. ),
  4597. 'indexes' => array(
  4598. 'tid' => array(
  4599. 0 => 'tid',
  4600. ),
  4601. ),
  4602. 'locked' => '0',
  4603. 'module' => 'taxonomy',
  4604. 'settings' => array(
  4605. 'allowed_values' => array(
  4606. 0 => array(
  4607. 'vocabulary' => 'tag_libres',
  4608. 'parent' => '0',
  4609. ),
  4610. ),
  4611. 'entity_translation_sync' => FALSE,
  4612. 'options_list_callback' => 'i18n_taxonomy_allowed_values',
  4613. 'profile2_private' => FALSE,
  4614. ),
  4615. 'translatable' => '0',
  4616. 'type' => 'taxonomy_term_reference',
  4617. ),
  4618. 'field_instance' => array(
  4619. 'bundle' => 'materiau',
  4620. 'default_value' => NULL,
  4621. 'deleted' => '0',
  4622. 'description' => '',
  4623. 'display' => array(
  4624. 'bookmark' => array(
  4625. 'label' => 'above',
  4626. 'settings' => array(),
  4627. 'type' => 'hidden',
  4628. 'weight' => '16',
  4629. ),
  4630. 'cardbig' => array(
  4631. 'label' => 'hidden',
  4632. 'settings' => array(),
  4633. 'type' => 'hidden',
  4634. 'weight' => '5',
  4635. ),
  4636. 'cardfull' => array(
  4637. 'label' => 'above',
  4638. 'settings' => array(),
  4639. 'type' => 'hidden',
  4640. 'weight' => '11',
  4641. ),
  4642. 'cardmedium' => array(
  4643. 'label' => 'above',
  4644. 'settings' => array(),
  4645. 'type' => 'hidden',
  4646. 'weight' => '11',
  4647. ),
  4648. 'cardsmall' => array(
  4649. 'label' => 'above',
  4650. 'settings' => array(),
  4651. 'type' => 'hidden',
  4652. 'weight' => '15',
  4653. ),
  4654. 'default' => array(
  4655. 'label' => 'hidden',
  4656. 'module' => 'i18n_taxonomy',
  4657. 'settings' => array(),
  4658. 'type' => 'i18n_taxonomy_term_reference_link',
  4659. 'weight' => '15',
  4660. ),
  4661. 'print' => array(
  4662. 'label' => 'above',
  4663. 'settings' => array(),
  4664. 'type' => 'hidden',
  4665. 'weight' => '13',
  4666. ),
  4667. 'teaser' => array(
  4668. 'label' => 'above',
  4669. 'settings' => array(),
  4670. 'type' => 'hidden',
  4671. 'weight' => '12',
  4672. ),
  4673. ),
  4674. 'entity_type' => 'node',
  4675. 'field_name' => 'field_tags_libres',
  4676. 'label' => 'Tags libres',
  4677. 'required' => 0,
  4678. 'settings' => array(
  4679. 'entity_translation_sync' => FALSE,
  4680. 'user_register_form' => FALSE,
  4681. ),
  4682. 'widget' => array(
  4683. 'active' => 1,
  4684. 'module' => 'autocomplete_deluxe',
  4685. 'settings' => array(
  4686. 'autocomplete_deluxe_path' => 'autocomplete_deluxe/taxonomy',
  4687. 'content_taxonomy_autocomplete_new_terms' => 'allow',
  4688. 'size' => '60',
  4689. ),
  4690. 'type' => 'autocomplete_deluxe_taxonomy',
  4691. 'weight' => '23',
  4692. ),
  4693. ),
  4694. );
  4695. // Exported field: 'node-materiau-field_video_filter'.
  4696. $fields['node-materiau-field_video_filter'] = array(
  4697. 'field_config' => array(
  4698. 'active' => '1',
  4699. 'cardinality' => '-1',
  4700. 'deleted' => '0',
  4701. 'entity_types' => array(),
  4702. 'field_name' => 'field_video_filter',
  4703. 'field_permissions' => array(
  4704. 'type' => '0',
  4705. ),
  4706. 'foreign keys' => array(),
  4707. 'indexes' => array(
  4708. 'height' => array(
  4709. 0 => 'height',
  4710. ),
  4711. 'width' => array(
  4712. 0 => 'width',
  4713. ),
  4714. ),
  4715. 'locked' => '0',
  4716. 'module' => 'video_filter_field',
  4717. 'settings' => array(
  4718. 'entity_translation_sync' => FALSE,
  4719. 'profile2_private' => FALSE,
  4720. ),
  4721. 'translatable' => '0',
  4722. 'type' => 'video_filter',
  4723. ),
  4724. 'field_instance' => array(
  4725. 'bundle' => 'materiau',
  4726. 'default_value' => NULL,
  4727. 'deleted' => '0',
  4728. 'description' => '',
  4729. 'display' => array(
  4730. 'bookmark' => array(
  4731. 'label' => 'above',
  4732. 'settings' => array(),
  4733. 'type' => 'hidden',
  4734. 'weight' => '11',
  4735. ),
  4736. 'cardbig' => array(
  4737. 'label' => 'above',
  4738. 'settings' => array(),
  4739. 'type' => 'hidden',
  4740. 'weight' => '3',
  4741. ),
  4742. 'cardfull' => array(
  4743. 'label' => 'above',
  4744. 'settings' => array(),
  4745. 'type' => 'hidden',
  4746. 'weight' => '12',
  4747. ),
  4748. 'cardmedium' => array(
  4749. 'label' => 'hidden',
  4750. 'settings' => array(),
  4751. 'type' => 'hidden',
  4752. 'weight' => '8',
  4753. ),
  4754. 'cardsmall' => array(
  4755. 'label' => 'above',
  4756. 'settings' => array(),
  4757. 'type' => 'hidden',
  4758. 'weight' => '11',
  4759. ),
  4760. 'default' => array(
  4761. 'label' => 'hidden',
  4762. 'module' => 'video_filter_field',
  4763. 'settings' => array(),
  4764. 'type' => 'video_filter_field_default',
  4765. 'weight' => '7',
  4766. ),
  4767. 'print' => array(
  4768. 'label' => 'above',
  4769. 'settings' => array(),
  4770. 'type' => 'hidden',
  4771. 'weight' => '14',
  4772. ),
  4773. 'teaser' => array(
  4774. 'label' => 'above',
  4775. 'settings' => array(),
  4776. 'type' => 'hidden',
  4777. 'weight' => '14',
  4778. ),
  4779. ),
  4780. 'entity_type' => 'node',
  4781. 'field_name' => 'field_video_filter',
  4782. 'label' => 'video',
  4783. 'required' => 0,
  4784. 'settings' => array(
  4785. 'autoplay' => 0,
  4786. 'entity_translation_sync' => FALSE,
  4787. 'max_height' => 400,
  4788. 'max_width' => 400,
  4789. 'user_register_form' => FALSE,
  4790. ),
  4791. 'widget' => array(
  4792. 'active' => 0,
  4793. 'module' => 'video_filter_field',
  4794. 'settings' => array(),
  4795. 'type' => 'video_filter',
  4796. 'weight' => '12',
  4797. ),
  4798. ),
  4799. );
  4800. // Exported field: 'node-materiau-field_workflow_state'.
  4801. $fields['node-materiau-field_workflow_state'] = array(
  4802. 'field_config' => array(
  4803. 'active' => '1',
  4804. 'cardinality' => '1',
  4805. 'deleted' => '0',
  4806. 'entity_types' => array(),
  4807. 'field_name' => 'field_workflow_state',
  4808. 'field_permissions' => array(
  4809. 'type' => '2',
  4810. ),
  4811. 'foreign keys' => array(),
  4812. 'indexes' => array(),
  4813. 'locked' => '0',
  4814. 'module' => 'computed_field',
  4815. 'settings' => array(
  4816. 'code' => '',
  4817. 'database' => array(
  4818. 'data_default' => '',
  4819. 'data_index' => 0,
  4820. 'data_length' => '32',
  4821. 'data_not_NULL' => 0,
  4822. 'data_precision' => '10',
  4823. 'data_scale' => '2',
  4824. 'data_size' => 'normal',
  4825. 'data_type' => 'varchar',
  4826. ),
  4827. 'display_format' => '//dsm($entity);
  4828. $workflow = workflow_get_workflow_type_map_by_type($entity->type);
  4829. $states = workflow_get_workflow_states_by_wid($workflow->wid);
  4830. foreach ($states as $state) {
  4831. if ($state->sid == $entity->workflow) {
  4832. $display_output = $state->state;
  4833. dsm($state, \'state\');
  4834. }
  4835. }
  4836. ',
  4837. 'entity_translation_sync' => FALSE,
  4838. 'profile2_private' => FALSE,
  4839. 'store' => 1,
  4840. ),
  4841. 'translatable' => '0',
  4842. 'type' => 'computed',
  4843. ),
  4844. 'field_instance' => array(
  4845. 'bundle' => 'materiau',
  4846. 'default_value' => NULL,
  4847. 'deleted' => '0',
  4848. 'description' => '',
  4849. 'display' => array(
  4850. 'bookmark' => array(
  4851. 'label' => 'above',
  4852. 'settings' => array(),
  4853. 'type' => 'hidden',
  4854. 'weight' => 0,
  4855. ),
  4856. 'cardbig' => array(
  4857. 'label' => 'above',
  4858. 'settings' => array(),
  4859. 'type' => 'hidden',
  4860. 'weight' => '0',
  4861. ),
  4862. 'cardfull' => array(
  4863. 'label' => 'above',
  4864. 'settings' => array(),
  4865. 'type' => 'hidden',
  4866. 'weight' => 0,
  4867. ),
  4868. 'cardmedium' => array(
  4869. 'label' => 'above',
  4870. 'settings' => array(),
  4871. 'type' => 'hidden',
  4872. 'weight' => '0',
  4873. ),
  4874. 'cardsmall' => array(
  4875. 'label' => 'above',
  4876. 'settings' => array(),
  4877. 'type' => 'hidden',
  4878. 'weight' => 0,
  4879. ),
  4880. 'default' => array(
  4881. 'label' => 'above',
  4882. 'module' => 'computed_field',
  4883. 'settings' => array(),
  4884. 'type' => 'computed_field_plain',
  4885. 'weight' => 24,
  4886. ),
  4887. 'print' => array(
  4888. 'label' => 'above',
  4889. 'settings' => array(),
  4890. 'type' => 'hidden',
  4891. 'weight' => '6',
  4892. ),
  4893. 'teaser' => array(
  4894. 'label' => 'hidden',
  4895. 'module' => 'computed_field',
  4896. 'settings' => array(),
  4897. 'type' => 'computed_field_unsanitized',
  4898. 'weight' => '3',
  4899. ),
  4900. ),
  4901. 'entity_type' => 'node',
  4902. 'field_name' => 'field_workflow_state',
  4903. 'label' => 'Workflow State',
  4904. 'required' => 0,
  4905. 'settings' => array(
  4906. 'entity_translation_sync' => FALSE,
  4907. 'user_register_form' => FALSE,
  4908. ),
  4909. 'widget' => array(
  4910. 'active' => 0,
  4911. 'module' => 'field_extrawidgets',
  4912. 'settings' => array(
  4913. 'display_empty' => 0,
  4914. 'formatter' => '',
  4915. 'formatter_settings' => array(),
  4916. ),
  4917. 'type' => 'field_extrawidgets_read_only',
  4918. 'weight' => '29',
  4919. ),
  4920. ),
  4921. );
  4922. // Exported field: 'node-materiau-title_field'.
  4923. $fields['node-materiau-title_field'] = array(
  4924. 'field_config' => array(
  4925. 'active' => '1',
  4926. 'cardinality' => '1',
  4927. 'deleted' => '0',
  4928. 'entity_types' => array(),
  4929. 'field_name' => 'title_field',
  4930. 'field_permissions' => array(
  4931. 'type' => '0',
  4932. ),
  4933. 'foreign keys' => array(
  4934. 'format' => array(
  4935. 'columns' => array(
  4936. 'format' => 'format',
  4937. ),
  4938. 'table' => 'filter_format',
  4939. ),
  4940. ),
  4941. 'indexes' => array(
  4942. 'format' => array(
  4943. 0 => 'format',
  4944. ),
  4945. ),
  4946. 'locked' => '0',
  4947. 'module' => 'text',
  4948. 'settings' => array(
  4949. 'entity_translation_sync' => FALSE,
  4950. 'max_length' => 255,
  4951. 'profile2_private' => FALSE,
  4952. ),
  4953. 'translatable' => '1',
  4954. 'type' => 'text',
  4955. ),
  4956. 'field_instance' => array(
  4957. 'bundle' => 'materiau',
  4958. 'default_value' => NULL,
  4959. 'deleted' => '0',
  4960. 'description' => 'A field replacing node title.',
  4961. 'display' => array(
  4962. 'bookmark' => array(
  4963. 'label' => 'hidden',
  4964. 'module' => 'text',
  4965. 'settings' => array(),
  4966. 'type' => 'text_plain',
  4967. 'weight' => '8',
  4968. ),
  4969. 'cardbig' => array(
  4970. 'label' => 'hidden',
  4971. 'module' => 'text',
  4972. 'settings' => array(),
  4973. 'type' => 'text_plain',
  4974. 'weight' => '5',
  4975. ),
  4976. 'cardfull' => array(
  4977. 'label' => 'hidden',
  4978. 'module' => 'text',
  4979. 'settings' => array(),
  4980. 'type' => 'text_plain',
  4981. 'weight' => '16',
  4982. ),
  4983. 'cardmedium' => array(
  4984. 'label' => 'hidden',
  4985. 'module' => 'text',
  4986. 'settings' => array(),
  4987. 'type' => 'text_plain',
  4988. 'weight' => '18',
  4989. ),
  4990. 'cardsmall' => array(
  4991. 'label' => 'hidden',
  4992. 'module' => 'text',
  4993. 'settings' => array(),
  4994. 'type' => 'text_plain',
  4995. 'weight' => '5',
  4996. ),
  4997. 'default' => array(
  4998. 'label' => 'hidden',
  4999. 'module' => 'text',
  5000. 'settings' => array(),
  5001. 'type' => 'text_default',
  5002. 'weight' => '12',
  5003. ),
  5004. 'print' => array(
  5005. 'label' => 'hidden',
  5006. 'module' => 'text',
  5007. 'settings' => array(),
  5008. 'type' => 'text_default',
  5009. 'weight' => '0',
  5010. ),
  5011. 'teaser' => array(
  5012. 'label' => 'hidden',
  5013. 'module' => 'text',
  5014. 'settings' => array(),
  5015. 'type' => 'text_default',
  5016. 'weight' => '0',
  5017. ),
  5018. ),
  5019. 'entity_type' => 'node',
  5020. 'field_name' => 'title_field',
  5021. 'label' => 'Nom',
  5022. 'required' => 1,
  5023. 'settings' => array(
  5024. 'entity_translation_sync' => FALSE,
  5025. 'hide_label' => array(
  5026. 'entity' => 0,
  5027. 'page' => 0,
  5028. ),
  5029. 'text_processing' => '0',
  5030. 'user_register_form' => FALSE,
  5031. ),
  5032. 'widget' => array(
  5033. 'active' => 1,
  5034. 'module' => 'text',
  5035. 'settings' => array(
  5036. 'size' => '60',
  5037. ),
  5038. 'type' => 'text_textfield',
  5039. 'weight' => '-5',
  5040. ),
  5041. ),
  5042. );
  5043. // Exported field: 'node-page-body'.
  5044. $fields['node-page-body'] = array(
  5045. 'field_config' => array(
  5046. 'active' => '1',
  5047. 'cardinality' => '1',
  5048. 'deleted' => '0',
  5049. 'entity_types' => array(
  5050. 0 => 'node',
  5051. ),
  5052. 'field_name' => 'body',
  5053. 'field_permissions' => array(
  5054. 'type' => '0',
  5055. ),
  5056. 'foreign keys' => array(
  5057. 'format' => array(
  5058. 'columns' => array(
  5059. 'format' => 'format',
  5060. ),
  5061. 'table' => 'filter_format',
  5062. ),
  5063. ),
  5064. 'indexes' => array(
  5065. 'format' => array(
  5066. 0 => 'format',
  5067. ),
  5068. ),
  5069. 'locked' => '0',
  5070. 'module' => 'text',
  5071. 'settings' => array(
  5072. 'entity_translation_sync' => FALSE,
  5073. 'profile2_private' => FALSE,
  5074. ),
  5075. 'translatable' => '1',
  5076. 'type' => 'text_with_summary',
  5077. ),
  5078. 'field_instance' => array(
  5079. 'bundle' => 'page',
  5080. 'default_value' => NULL,
  5081. 'deleted' => '0',
  5082. 'description' => '',
  5083. 'display' => array(
  5084. 'bookmark' => array(
  5085. 'label' => 'above',
  5086. 'settings' => array(),
  5087. 'type' => 'hidden',
  5088. 'weight' => 0,
  5089. ),
  5090. 'cardbig' => array(
  5091. 'label' => 'above',
  5092. 'settings' => array(),
  5093. 'type' => 'hidden',
  5094. 'weight' => 0,
  5095. ),
  5096. 'cardfull' => array(
  5097. 'label' => 'above',
  5098. 'settings' => array(),
  5099. 'type' => 'hidden',
  5100. 'weight' => 0,
  5101. ),
  5102. 'cardmedium' => array(
  5103. 'label' => 'above',
  5104. 'settings' => array(),
  5105. 'type' => 'hidden',
  5106. 'weight' => 0,
  5107. ),
  5108. 'cardsmall' => array(
  5109. 'label' => 'above',
  5110. 'settings' => array(),
  5111. 'type' => 'hidden',
  5112. 'weight' => 0,
  5113. ),
  5114. 'default' => array(
  5115. 'label' => 'hidden',
  5116. 'module' => 'text',
  5117. 'settings' => array(),
  5118. 'type' => 'text_default',
  5119. 'weight' => 0,
  5120. ),
  5121. 'print' => array(
  5122. 'label' => 'above',
  5123. 'settings' => array(),
  5124. 'type' => 'hidden',
  5125. 'weight' => 0,
  5126. ),
  5127. 'teaser' => array(
  5128. 'label' => 'hidden',
  5129. 'module' => 'text',
  5130. 'settings' => array(
  5131. 'trim_length' => 600,
  5132. ),
  5133. 'type' => 'text_summary_or_trimmed',
  5134. 'weight' => 0,
  5135. ),
  5136. ),
  5137. 'entity_type' => 'node',
  5138. 'field_name' => 'body',
  5139. 'label' => 'Body',
  5140. 'required' => FALSE,
  5141. 'settings' => array(
  5142. 'display_summary' => TRUE,
  5143. 'entity_translation_sync' => FALSE,
  5144. 'text_processing' => 1,
  5145. 'user_register_form' => FALSE,
  5146. ),
  5147. 'widget' => array(
  5148. 'module' => 'text',
  5149. 'settings' => array(
  5150. 'rows' => 20,
  5151. 'summary_rows' => 5,
  5152. ),
  5153. 'type' => 'text_textarea_with_summary',
  5154. 'weight' => -4,
  5155. ),
  5156. ),
  5157. );
  5158. // Exported field: 'node-page-title_field'.
  5159. $fields['node-page-title_field'] = array(
  5160. 'field_config' => array(
  5161. 'active' => '1',
  5162. 'cardinality' => '1',
  5163. 'deleted' => '0',
  5164. 'entity_types' => array(),
  5165. 'field_name' => 'title_field',
  5166. 'field_permissions' => array(
  5167. 'type' => '0',
  5168. ),
  5169. 'foreign keys' => array(
  5170. 'format' => array(
  5171. 'columns' => array(
  5172. 'format' => 'format',
  5173. ),
  5174. 'table' => 'filter_format',
  5175. ),
  5176. ),
  5177. 'indexes' => array(
  5178. 'format' => array(
  5179. 0 => 'format',
  5180. ),
  5181. ),
  5182. 'locked' => '0',
  5183. 'module' => 'text',
  5184. 'settings' => array(
  5185. 'entity_translation_sync' => FALSE,
  5186. 'max_length' => 255,
  5187. 'profile2_private' => FALSE,
  5188. ),
  5189. 'translatable' => '1',
  5190. 'type' => 'text',
  5191. ),
  5192. 'field_instance' => array(
  5193. 'bundle' => 'page',
  5194. 'default_value' => NULL,
  5195. 'deleted' => '0',
  5196. 'description' => 'A field replacing node title.',
  5197. 'display' => array(
  5198. 'bookmark' => array(
  5199. 'label' => 'above',
  5200. 'settings' => array(),
  5201. 'type' => 'hidden',
  5202. 'weight' => 0,
  5203. ),
  5204. 'cardbig' => array(
  5205. 'label' => 'above',
  5206. 'settings' => array(),
  5207. 'type' => 'hidden',
  5208. 'weight' => 0,
  5209. ),
  5210. 'cardfull' => array(
  5211. 'label' => 'above',
  5212. 'settings' => array(),
  5213. 'type' => 'hidden',
  5214. 'weight' => 0,
  5215. ),
  5216. 'cardmedium' => array(
  5217. 'label' => 'above',
  5218. 'settings' => array(),
  5219. 'type' => 'hidden',
  5220. 'weight' => 0,
  5221. ),
  5222. 'cardsmall' => array(
  5223. 'label' => 'above',
  5224. 'settings' => array(),
  5225. 'type' => 'hidden',
  5226. 'weight' => 0,
  5227. ),
  5228. 'default' => array(
  5229. 'label' => 'above',
  5230. 'settings' => array(),
  5231. 'type' => 'hidden',
  5232. 'weight' => 1,
  5233. ),
  5234. 'print' => array(
  5235. 'label' => 'above',
  5236. 'settings' => array(),
  5237. 'type' => 'hidden',
  5238. 'weight' => 0,
  5239. ),
  5240. 'teaser' => array(
  5241. 'label' => 'above',
  5242. 'settings' => array(),
  5243. 'type' => 'hidden',
  5244. 'weight' => 0,
  5245. ),
  5246. ),
  5247. 'entity_type' => 'node',
  5248. 'field_name' => 'title_field',
  5249. 'label' => 'Titre',
  5250. 'required' => TRUE,
  5251. 'settings' => array(
  5252. 'entity_translation_sync' => FALSE,
  5253. 'hide_label' => array(
  5254. 'entity' => FALSE,
  5255. 'page' => FALSE,
  5256. ),
  5257. 'text_processing' => 0,
  5258. 'user_register_form' => FALSE,
  5259. ),
  5260. 'widget' => array(
  5261. 'module' => 'text',
  5262. 'settings' => array(
  5263. 'size' => 60,
  5264. ),
  5265. 'type' => 'text_textfield',
  5266. 'weight' => -5,
  5267. ),
  5268. ),
  5269. );
  5270. // Exported field: 'node-webform-body'.
  5271. $fields['node-webform-body'] = array(
  5272. 'field_config' => array(
  5273. 'active' => '1',
  5274. 'cardinality' => '1',
  5275. 'deleted' => '0',
  5276. 'entity_types' => array(
  5277. 0 => 'node',
  5278. ),
  5279. 'field_name' => 'body',
  5280. 'field_permissions' => array(
  5281. 'type' => '0',
  5282. ),
  5283. 'foreign keys' => array(
  5284. 'format' => array(
  5285. 'columns' => array(
  5286. 'format' => 'format',
  5287. ),
  5288. 'table' => 'filter_format',
  5289. ),
  5290. ),
  5291. 'indexes' => array(
  5292. 'format' => array(
  5293. 0 => 'format',
  5294. ),
  5295. ),
  5296. 'locked' => '0',
  5297. 'module' => 'text',
  5298. 'settings' => array(
  5299. 'entity_translation_sync' => FALSE,
  5300. 'profile2_private' => FALSE,
  5301. ),
  5302. 'translatable' => '1',
  5303. 'type' => 'text_with_summary',
  5304. ),
  5305. 'field_instance' => array(
  5306. 'bundle' => 'webform',
  5307. 'default_value' => NULL,
  5308. 'deleted' => '0',
  5309. 'description' => '',
  5310. 'display' => array(
  5311. 'bookmark' => array(
  5312. 'label' => 'above',
  5313. 'settings' => array(),
  5314. 'type' => 'hidden',
  5315. 'weight' => 0,
  5316. ),
  5317. 'cardbig' => array(
  5318. 'label' => 'above',
  5319. 'settings' => array(),
  5320. 'type' => 'hidden',
  5321. 'weight' => 0,
  5322. ),
  5323. 'cardfull' => array(
  5324. 'label' => 'above',
  5325. 'settings' => array(),
  5326. 'type' => 'hidden',
  5327. 'weight' => 0,
  5328. ),
  5329. 'cardmedium' => array(
  5330. 'label' => 'above',
  5331. 'settings' => array(),
  5332. 'type' => 'hidden',
  5333. 'weight' => 0,
  5334. ),
  5335. 'cardsmall' => array(
  5336. 'label' => 'above',
  5337. 'settings' => array(),
  5338. 'type' => 'hidden',
  5339. 'weight' => 0,
  5340. ),
  5341. 'default' => array(
  5342. 'label' => 'hidden',
  5343. 'module' => 'text',
  5344. 'settings' => array(),
  5345. 'type' => 'text_default',
  5346. 'weight' => 0,
  5347. ),
  5348. 'print' => array(
  5349. 'label' => 'above',
  5350. 'settings' => array(),
  5351. 'type' => 'hidden',
  5352. 'weight' => 0,
  5353. ),
  5354. 'teaser' => array(
  5355. 'label' => 'hidden',
  5356. 'module' => 'text',
  5357. 'settings' => array(
  5358. 'trim_length' => 600,
  5359. ),
  5360. 'type' => 'text_summary_or_trimmed',
  5361. 'weight' => 0,
  5362. ),
  5363. ),
  5364. 'entity_type' => 'node',
  5365. 'field_name' => 'body',
  5366. 'label' => 'Body',
  5367. 'required' => FALSE,
  5368. 'settings' => array(
  5369. 'display_summary' => TRUE,
  5370. 'entity_translation_sync' => FALSE,
  5371. 'text_processing' => 1,
  5372. 'user_register_form' => FALSE,
  5373. ),
  5374. 'widget' => array(
  5375. 'module' => 'text',
  5376. 'settings' => array(
  5377. 'rows' => 20,
  5378. 'summary_rows' => 5,
  5379. ),
  5380. 'type' => 'text_textarea_with_summary',
  5381. 'weight' => 31,
  5382. ),
  5383. ),
  5384. );
  5385. // Exported field: 'node-webform-title_field'.
  5386. $fields['node-webform-title_field'] = array(
  5387. 'field_config' => array(
  5388. 'active' => '1',
  5389. 'cardinality' => '1',
  5390. 'deleted' => '0',
  5391. 'entity_types' => array(),
  5392. 'field_name' => 'title_field',
  5393. 'field_permissions' => array(
  5394. 'type' => '0',
  5395. ),
  5396. 'foreign keys' => array(
  5397. 'format' => array(
  5398. 'columns' => array(
  5399. 'format' => 'format',
  5400. ),
  5401. 'table' => 'filter_format',
  5402. ),
  5403. ),
  5404. 'indexes' => array(
  5405. 'format' => array(
  5406. 0 => 'format',
  5407. ),
  5408. ),
  5409. 'locked' => '0',
  5410. 'module' => 'text',
  5411. 'settings' => array(
  5412. 'entity_translation_sync' => FALSE,
  5413. 'max_length' => 255,
  5414. 'profile2_private' => FALSE,
  5415. ),
  5416. 'translatable' => '1',
  5417. 'type' => 'text',
  5418. ),
  5419. 'field_instance' => array(
  5420. 'bundle' => 'webform',
  5421. 'default_value' => NULL,
  5422. 'deleted' => '0',
  5423. 'description' => 'A field replacing node title.',
  5424. 'display' => array(
  5425. 'bookmark' => array(
  5426. 'label' => 'above',
  5427. 'settings' => array(),
  5428. 'type' => 'hidden',
  5429. 'weight' => 0,
  5430. ),
  5431. 'cardbig' => array(
  5432. 'label' => 'above',
  5433. 'settings' => array(),
  5434. 'type' => 'hidden',
  5435. 'weight' => 0,
  5436. ),
  5437. 'cardfull' => array(
  5438. 'label' => 'above',
  5439. 'settings' => array(),
  5440. 'type' => 'hidden',
  5441. 'weight' => 0,
  5442. ),
  5443. 'cardmedium' => array(
  5444. 'label' => 'above',
  5445. 'settings' => array(),
  5446. 'type' => 'hidden',
  5447. 'weight' => 0,
  5448. ),
  5449. 'cardsmall' => array(
  5450. 'label' => 'above',
  5451. 'settings' => array(),
  5452. 'type' => 'hidden',
  5453. 'weight' => 0,
  5454. ),
  5455. 'default' => array(
  5456. 'label' => 'above',
  5457. 'settings' => array(),
  5458. 'type' => 'hidden',
  5459. 'weight' => 1,
  5460. ),
  5461. 'print' => array(
  5462. 'label' => 'above',
  5463. 'settings' => array(),
  5464. 'type' => 'hidden',
  5465. 'weight' => 0,
  5466. ),
  5467. 'teaser' => array(
  5468. 'label' => 'above',
  5469. 'settings' => array(),
  5470. 'type' => 'hidden',
  5471. 'weight' => 0,
  5472. ),
  5473. ),
  5474. 'entity_type' => 'node',
  5475. 'field_name' => 'title_field',
  5476. 'label' => 'Titre',
  5477. 'required' => TRUE,
  5478. 'settings' => array(
  5479. 'entity_translation_sync' => FALSE,
  5480. 'hide_label' => array(
  5481. 'entity' => FALSE,
  5482. 'page' => FALSE,
  5483. ),
  5484. 'text_processing' => 0,
  5485. 'user_register_form' => FALSE,
  5486. ),
  5487. 'widget' => array(
  5488. 'module' => 'text',
  5489. 'settings' => array(
  5490. 'size' => 60,
  5491. ),
  5492. 'type' => 'text_textfield',
  5493. 'weight' => -5,
  5494. ),
  5495. ),
  5496. );
  5497. // Exported field: 'taxonomy_term-company-synonyms_synonym'.
  5498. $fields['taxonomy_term-company-synonyms_synonym'] = array(
  5499. 'field_config' => array(
  5500. 'active' => '1',
  5501. 'cardinality' => '-1',
  5502. 'deleted' => '0',
  5503. 'entity_types' => array(),
  5504. 'field_name' => 'synonyms_synonym',
  5505. 'field_permissions' => array(
  5506. 'type' => '0',
  5507. ),
  5508. 'foreign keys' => array(
  5509. 'format' => array(
  5510. 'columns' => array(
  5511. 'format' => 'format',
  5512. ),
  5513. 'table' => 'filter_format',
  5514. ),
  5515. ),
  5516. 'indexes' => array(
  5517. 'format' => array(
  5518. 0 => 'format',
  5519. ),
  5520. ),
  5521. 'locked' => '0',
  5522. 'module' => 'text',
  5523. 'settings' => array(
  5524. 'entity_translation_sync' => FALSE,
  5525. 'max_length' => 255,
  5526. 'profile2_private' => FALSE,
  5527. ),
  5528. 'translatable' => '1',
  5529. 'type' => 'text',
  5530. ),
  5531. 'field_instance' => array(
  5532. 'bundle' => 'company',
  5533. 'default_value' => NULL,
  5534. 'deleted' => '0',
  5535. 'description' => '',
  5536. 'display' => array(
  5537. 'default' => array(
  5538. 'label' => 'above',
  5539. 'module' => 'text',
  5540. 'settings' => array(),
  5541. 'type' => 'text_default',
  5542. 'weight' => 0,
  5543. ),
  5544. ),
  5545. 'entity_type' => 'taxonomy_term',
  5546. 'field_name' => 'synonyms_synonym',
  5547. 'label' => 'Synonyms',
  5548. 'required' => FALSE,
  5549. 'settings' => array(
  5550. 'entity_translation_sync' => FALSE,
  5551. 'text_processing' => 0,
  5552. 'user_register_form' => FALSE,
  5553. ),
  5554. 'widget' => array(
  5555. 'module' => 'text',
  5556. 'settings' => array(
  5557. 'size' => 60,
  5558. ),
  5559. 'type' => 'text_textfield',
  5560. 'weight' => 31,
  5561. ),
  5562. ),
  5563. );
  5564. // Exported field: 'taxonomy_term-onthologie-name_field'.
  5565. $fields['taxonomy_term-onthologie-name_field'] = array(
  5566. 'field_config' => array(
  5567. 'active' => '1',
  5568. 'cardinality' => '1',
  5569. 'deleted' => '0',
  5570. 'entity_types' => array(),
  5571. 'field_name' => 'name_field',
  5572. 'foreign keys' => array(
  5573. 'format' => array(
  5574. 'columns' => array(
  5575. 'format' => 'format',
  5576. ),
  5577. 'table' => 'filter_format',
  5578. ),
  5579. ),
  5580. 'indexes' => array(
  5581. 'format' => array(
  5582. 0 => 'format',
  5583. ),
  5584. ),
  5585. 'locked' => '0',
  5586. 'module' => 'text',
  5587. 'settings' => array(
  5588. 'entity_translation_sync' => FALSE,
  5589. 'max_length' => 255,
  5590. ),
  5591. 'translatable' => '1',
  5592. 'type' => 'text',
  5593. ),
  5594. 'field_instance' => array(
  5595. 'bundle' => 'onthologie',
  5596. 'default_value' => NULL,
  5597. 'deleted' => '0',
  5598. 'description' => 'A field replacing taxonomy term name.',
  5599. 'display' => array(
  5600. 'default' => array(
  5601. 'label' => 'above',
  5602. 'settings' => array(),
  5603. 'type' => 'hidden',
  5604. 'weight' => '1',
  5605. ),
  5606. 'search_index' => array(
  5607. 'label' => 'hidden',
  5608. 'module' => 'text',
  5609. 'settings' => array(),
  5610. 'type' => 'text_default',
  5611. 'weight' => '0',
  5612. ),
  5613. ),
  5614. 'entity_type' => 'taxonomy_term',
  5615. 'field_name' => 'name_field',
  5616. 'label' => 'Nom',
  5617. 'required' => TRUE,
  5618. 'settings' => array(
  5619. 'entity_translation_sync' => FALSE,
  5620. 'hide_label' => array(
  5621. 'entity' => FALSE,
  5622. 'page' => FALSE,
  5623. ),
  5624. 'text_processing' => 0,
  5625. 'user_register_form' => FALSE,
  5626. ),
  5627. 'widget' => array(
  5628. 'module' => 'text',
  5629. 'settings' => array(
  5630. 'size' => 60,
  5631. ),
  5632. 'type' => 'text_textfield',
  5633. 'weight' => -5,
  5634. ),
  5635. ),
  5636. );
  5637. // Exported field: 'taxonomy_term-onthologie-synonyms_synonym'.
  5638. $fields['taxonomy_term-onthologie-synonyms_synonym'] = array(
  5639. 'field_config' => array(
  5640. 'active' => '1',
  5641. 'cardinality' => '-1',
  5642. 'deleted' => '0',
  5643. 'entity_types' => array(),
  5644. 'field_name' => 'synonyms_synonym',
  5645. 'field_permissions' => array(
  5646. 'type' => '0',
  5647. ),
  5648. 'foreign keys' => array(
  5649. 'format' => array(
  5650. 'columns' => array(
  5651. 'format' => 'format',
  5652. ),
  5653. 'table' => 'filter_format',
  5654. ),
  5655. ),
  5656. 'indexes' => array(
  5657. 'format' => array(
  5658. 0 => 'format',
  5659. ),
  5660. ),
  5661. 'locked' => '0',
  5662. 'module' => 'text',
  5663. 'settings' => array(
  5664. 'entity_translation_sync' => FALSE,
  5665. 'max_length' => 255,
  5666. 'profile2_private' => FALSE,
  5667. ),
  5668. 'translatable' => '1',
  5669. 'type' => 'text',
  5670. ),
  5671. 'field_instance' => array(
  5672. 'bundle' => 'onthologie',
  5673. 'default_value' => NULL,
  5674. 'deleted' => '0',
  5675. 'description' => '',
  5676. 'display' => array(
  5677. 'default' => array(
  5678. 'label' => 'above',
  5679. 'module' => 'text',
  5680. 'settings' => array(),
  5681. 'type' => 'text_default',
  5682. 'weight' => '0',
  5683. ),
  5684. 'search_index' => array(
  5685. 'label' => 'hidden',
  5686. 'module' => 'text',
  5687. 'settings' => array(),
  5688. 'type' => 'text_default',
  5689. 'weight' => '1',
  5690. ),
  5691. ),
  5692. 'entity_type' => 'taxonomy_term',
  5693. 'field_name' => 'synonyms_synonym',
  5694. 'label' => 'Synonyms',
  5695. 'required' => 0,
  5696. 'settings' => array(
  5697. 'entity_translation_sync' => FALSE,
  5698. 'text_processing' => '0',
  5699. 'user_register_form' => FALSE,
  5700. ),
  5701. 'widget' => array(
  5702. 'active' => 1,
  5703. 'module' => 'text',
  5704. 'settings' => array(
  5705. 'size' => '60',
  5706. ),
  5707. 'type' => 'text_textfield',
  5708. 'weight' => 31,
  5709. ),
  5710. ),
  5711. );
  5712. // Exported field: 'taxonomy_term-tag_libres-name_field'.
  5713. $fields['taxonomy_term-tag_libres-name_field'] = array(
  5714. 'field_config' => array(
  5715. 'active' => '1',
  5716. 'cardinality' => '1',
  5717. 'deleted' => '0',
  5718. 'entity_types' => array(),
  5719. 'field_name' => 'name_field',
  5720. 'foreign keys' => array(
  5721. 'format' => array(
  5722. 'columns' => array(
  5723. 'format' => 'format',
  5724. ),
  5725. 'table' => 'filter_format',
  5726. ),
  5727. ),
  5728. 'indexes' => array(
  5729. 'format' => array(
  5730. 0 => 'format',
  5731. ),
  5732. ),
  5733. 'locked' => '0',
  5734. 'module' => 'text',
  5735. 'settings' => array(
  5736. 'entity_translation_sync' => FALSE,
  5737. 'max_length' => 255,
  5738. ),
  5739. 'translatable' => '1',
  5740. 'type' => 'text',
  5741. ),
  5742. 'field_instance' => array(
  5743. 'bundle' => 'tag_libres',
  5744. 'default_value' => NULL,
  5745. 'deleted' => '0',
  5746. 'description' => '',
  5747. 'display' => array(
  5748. 'default' => array(
  5749. 'label' => 'above',
  5750. 'settings' => array(),
  5751. 'type' => 'hidden',
  5752. 'weight' => 1,
  5753. ),
  5754. ),
  5755. 'entity_type' => 'taxonomy_term',
  5756. 'field_name' => 'name_field',
  5757. 'label' => 'Nom',
  5758. 'required' => TRUE,
  5759. 'settings' => array(
  5760. 'entity_translation_sync' => FALSE,
  5761. 'hide_label' => array(
  5762. 'entity' => FALSE,
  5763. 'page' => FALSE,
  5764. ),
  5765. 'text_processing' => 0,
  5766. 'user_register_form' => FALSE,
  5767. ),
  5768. 'widget' => array(
  5769. 'module' => 'text',
  5770. 'settings' => array(
  5771. 'size' => 60,
  5772. ),
  5773. 'type' => 'text_textfield',
  5774. 'weight' => -5,
  5775. ),
  5776. ),
  5777. );
  5778. // Exported field: 'taxonomy_term-tag_libres-synonyms_synonym'.
  5779. $fields['taxonomy_term-tag_libres-synonyms_synonym'] = array(
  5780. 'field_config' => array(
  5781. 'active' => '1',
  5782. 'cardinality' => '-1',
  5783. 'deleted' => '0',
  5784. 'entity_types' => array(),
  5785. 'field_name' => 'synonyms_synonym',
  5786. 'field_permissions' => array(
  5787. 'type' => '0',
  5788. ),
  5789. 'foreign keys' => array(
  5790. 'format' => array(
  5791. 'columns' => array(
  5792. 'format' => 'format',
  5793. ),
  5794. 'table' => 'filter_format',
  5795. ),
  5796. ),
  5797. 'indexes' => array(
  5798. 'format' => array(
  5799. 0 => 'format',
  5800. ),
  5801. ),
  5802. 'locked' => '0',
  5803. 'module' => 'text',
  5804. 'settings' => array(
  5805. 'entity_translation_sync' => FALSE,
  5806. 'max_length' => 255,
  5807. 'profile2_private' => FALSE,
  5808. ),
  5809. 'translatable' => '1',
  5810. 'type' => 'text',
  5811. ),
  5812. 'field_instance' => array(
  5813. 'bundle' => 'tag_libres',
  5814. 'default_value' => NULL,
  5815. 'deleted' => '0',
  5816. 'description' => '',
  5817. 'display' => array(
  5818. 'default' => array(
  5819. 'label' => 'above',
  5820. 'module' => 'text',
  5821. 'settings' => array(),
  5822. 'type' => 'text_default',
  5823. 'weight' => 0,
  5824. ),
  5825. ),
  5826. 'entity_type' => 'taxonomy_term',
  5827. 'field_name' => 'synonyms_synonym',
  5828. 'label' => 'Synonyms',
  5829. 'required' => FALSE,
  5830. 'settings' => array(
  5831. 'entity_translation_sync' => FALSE,
  5832. 'text_processing' => 0,
  5833. 'user_register_form' => FALSE,
  5834. ),
  5835. 'widget' => array(
  5836. 'module' => 'text',
  5837. 'settings' => array(
  5838. 'size' => 60,
  5839. ),
  5840. 'type' => 'text_textfield',
  5841. 'weight' => 31,
  5842. ),
  5843. ),
  5844. );
  5845. // Translatables
  5846. // Included for use with string extractors like potx.
  5847. t('"http://" will be added automaticly.');
  5848. t('A field replacing node title.');
  5849. t('A field replacing taxonomy term name.');
  5850. t('Adresse');
  5851. t('Authored on');
  5852. t('Body');
  5853. t('Brève(s) liée(s)');
  5854. t('Department');
  5855. t('Description');
  5856. t('Distributeurs');
  5857. t('Email');
  5858. t('Fabricants');
  5859. t('Famille');
  5860. t('Fichiers joints');
  5861. t('Identifiant');
  5862. t('Image');
  5863. t('Infos from company');
  5864. t('Localisation');
  5865. t('Materiau(x) lié(s)');
  5866. t('Materio speach');
  5867. t('Mémo');
  5868. t('Name');
  5869. t('Nature Titre');
  5870. t('Nom');
  5871. t('Note');
  5872. t('Onthologie');
  5873. t('Phone');
  5874. t('Référence Materio');
  5875. t('Synonyms');
  5876. t('Tags libres');
  5877. t('Titre');
  5878. t('Workflow State');
  5879. t('source');
  5880. t('video');
  5881. t('website');
  5882. return $fields;
  5883. }