views.view.admin_taxo.yml 155 KB

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