views.view.admin_taxo.yml 149 KB

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