views.view.admin_taxo.yml 155 KB

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