views.view.admin_taxo.yml 147 KB

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