views.view.admin_taxo.yml 167 KB

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