views.view.admin_taxo.yml 150 KB

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