views.view.admin_taxo.yml 170 KB

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