views.view.content.yml 159 KB

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