views.view.content.yml 160 KB

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