views.view.admin_taxo.yml 162 KB

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