views.view.admin_taxo.yml 170 KB

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