views.view.admin_taxo.yml 167 KB

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