views.view.admin_taxo.yml 171 KB

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