views.view.admin_taxo.yml 170 KB

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