views.view.content.yml 156 KB

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