views.view.admin_taxo.yml 150 KB

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