views.view.content.yml 154 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508
  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: Productions
  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. operations:
  1657. id: operations
  1658. table: node
  1659. field: operations
  1660. relationship: none
  1661. group_type: group
  1662. admin_label: ''
  1663. label: Operations
  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. destination: true
  1705. plugin_id: entity_operations
  1706. field_son:
  1707. id: field_son
  1708. table: node__field_son
  1709. field: field_son
  1710. relationship: none
  1711. group_type: group
  1712. admin_label: ''
  1713. label: Son
  1714. exclude: false
  1715. alter:
  1716. alter_text: false
  1717. text: ''
  1718. make_link: false
  1719. path: ''
  1720. absolute: false
  1721. external: false
  1722. replace_spaces: false
  1723. path_case: none
  1724. trim_whitespace: false
  1725. alt: ''
  1726. rel: ''
  1727. link_class: ''
  1728. prefix: ''
  1729. suffix: ''
  1730. target: ''
  1731. nl2br: false
  1732. max_length: 0
  1733. word_boundary: true
  1734. ellipsis: true
  1735. more_link: false
  1736. more_link_text: ''
  1737. more_link_path: ''
  1738. strip_tags: false
  1739. trim: false
  1740. preserve_tags: ''
  1741. html: false
  1742. element_type: ''
  1743. element_class: ''
  1744. element_label_type: ''
  1745. element_label_class: ''
  1746. element_label_colon: true
  1747. element_wrapper_type: ''
  1748. element_wrapper_class: ''
  1749. element_default_classes: true
  1750. empty: ''
  1751. hide_empty: false
  1752. empty_zero: false
  1753. hide_alter_empty: true
  1754. click_sort_column: target_id
  1755. type: audiofield_audioplayer
  1756. settings:
  1757. audio_player: default_mp3_player
  1758. audio_player_jplayer_theme: none
  1759. audio_player_wavesurfer_combine_files: 0
  1760. audio_player_wordpress_combine_files: 0
  1761. audio_player_wordpress_animation: 0
  1762. audio_player_soundmanager_theme: default
  1763. audio_player_initial_volume: '8'
  1764. audio_player_autoplay: 0
  1765. audio_player_lazyload: 1
  1766. download_button: 0
  1767. download_link: 0
  1768. group_column: ''
  1769. group_columns: { }
  1770. group_rows: true
  1771. delta_limit: 0
  1772. delta_offset: 0
  1773. delta_reversed: false
  1774. delta_first_last: false
  1775. multi_type: separator
  1776. separator: ', '
  1777. field_api_classes: false
  1778. plugin_id: field
  1779. view_node:
  1780. id: view_node
  1781. table: node
  1782. field: view_node
  1783. relationship: none
  1784. group_type: group
  1785. admin_label: ''
  1786. label: 'Lien vers Content'
  1787. exclude: false
  1788. alter:
  1789. alter_text: false
  1790. text: ''
  1791. make_link: false
  1792. path: ''
  1793. absolute: false
  1794. external: false
  1795. replace_spaces: false
  1796. path_case: none
  1797. trim_whitespace: false
  1798. alt: ''
  1799. rel: ''
  1800. link_class: ''
  1801. prefix: ''
  1802. suffix: ''
  1803. target: ''
  1804. nl2br: false
  1805. max_length: 0
  1806. word_boundary: true
  1807. ellipsis: true
  1808. more_link: false
  1809. more_link_text: ''
  1810. more_link_path: ''
  1811. strip_tags: false
  1812. trim: false
  1813. preserve_tags: ''
  1814. html: false
  1815. element_type: ''
  1816. element_class: ''
  1817. element_label_type: ''
  1818. element_label_class: ''
  1819. element_label_colon: true
  1820. element_wrapper_type: ''
  1821. element_wrapper_class: ''
  1822. element_default_classes: true
  1823. empty: ''
  1824. hide_empty: false
  1825. empty_zero: false
  1826. hide_alter_empty: true
  1827. text: voir
  1828. output_url_as_text: true
  1829. absolute: true
  1830. entity_type: node
  1831. plugin_id: entity_link
  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. operations:
  2987. id: operations
  2988. table: node
  2989. field: operations
  2990. relationship: none
  2991. group_type: group
  2992. admin_label: ''
  2993. label: Operations
  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. destination: true
  3035. plugin_id: entity_operations
  3036. field_son:
  3037. id: field_son
  3038. table: node__field_son
  3039. field: field_son
  3040. relationship: none
  3041. group_type: group
  3042. admin_label: ''
  3043. label: Son
  3044. exclude: false
  3045. alter:
  3046. alter_text: false
  3047. text: ''
  3048. make_link: false
  3049. path: ''
  3050. absolute: false
  3051. external: false
  3052. replace_spaces: false
  3053. path_case: none
  3054. trim_whitespace: false
  3055. alt: ''
  3056. rel: ''
  3057. link_class: ''
  3058. prefix: ''
  3059. suffix: ''
  3060. target: ''
  3061. nl2br: false
  3062. max_length: 0
  3063. word_boundary: true
  3064. ellipsis: true
  3065. more_link: false
  3066. more_link_text: ''
  3067. more_link_path: ''
  3068. strip_tags: false
  3069. trim: false
  3070. preserve_tags: ''
  3071. html: false
  3072. element_type: ''
  3073. element_class: ''
  3074. element_label_type: ''
  3075. element_label_class: ''
  3076. element_label_colon: true
  3077. element_wrapper_type: ''
  3078. element_wrapper_class: ''
  3079. element_default_classes: true
  3080. empty: ''
  3081. hide_empty: false
  3082. empty_zero: false
  3083. hide_alter_empty: true
  3084. click_sort_column: target_id
  3085. type: audiofield_audioplayer
  3086. settings:
  3087. audio_player: default_mp3_player
  3088. audio_player_jplayer_theme: none
  3089. audio_player_wavesurfer_combine_files: 0
  3090. audio_player_wordpress_combine_files: 0
  3091. audio_player_wordpress_animation: 0
  3092. audio_player_soundmanager_theme: default
  3093. audio_player_initial_volume: '8'
  3094. audio_player_autoplay: 0
  3095. audio_player_lazyload: 1
  3096. download_button: 0
  3097. download_link: 0
  3098. group_column: ''
  3099. group_columns: { }
  3100. group_rows: true
  3101. delta_limit: 0
  3102. delta_offset: 0
  3103. delta_reversed: false
  3104. delta_first_last: false
  3105. multi_type: separator
  3106. separator: ', '
  3107. field_api_classes: false
  3108. plugin_id: field
  3109. view_node:
  3110. id: view_node
  3111. table: node
  3112. field: view_node
  3113. relationship: none
  3114. group_type: group
  3115. admin_label: ''
  3116. label: 'Lien vers Content'
  3117. exclude: false
  3118. alter:
  3119. alter_text: false
  3120. text: ''
  3121. make_link: false
  3122. path: ''
  3123. absolute: false
  3124. external: false
  3125. replace_spaces: false
  3126. path_case: none
  3127. trim_whitespace: false
  3128. alt: ''
  3129. rel: ''
  3130. link_class: ''
  3131. prefix: ''
  3132. suffix: ''
  3133. target: ''
  3134. nl2br: false
  3135. max_length: 0
  3136. word_boundary: true
  3137. ellipsis: true
  3138. more_link: false
  3139. more_link_text: ''
  3140. more_link_path: ''
  3141. strip_tags: false
  3142. trim: false
  3143. preserve_tags: ''
  3144. html: false
  3145. element_type: ''
  3146. element_class: ''
  3147. element_label_type: ''
  3148. element_label_class: ''
  3149. element_label_colon: true
  3150. element_wrapper_type: ''
  3151. element_wrapper_class: ''
  3152. element_default_classes: true
  3153. empty: ''
  3154. hide_empty: false
  3155. empty_zero: false
  3156. hide_alter_empty: true
  3157. text: voir
  3158. output_url_as_text: true
  3159. absolute: true
  3160. entity_type: node
  3161. plugin_id: entity_link
  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. operations:
  4340. id: operations
  4341. table: node
  4342. field: operations
  4343. relationship: none
  4344. group_type: group
  4345. admin_label: ''
  4346. label: Operations
  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. destination: true
  4388. plugin_id: entity_operations
  4389. field_date:
  4390. id: field_date
  4391. table: node__field_date
  4392. field: field_date
  4393. relationship: none
  4394. group_type: group
  4395. admin_label: ''
  4396. label: Date
  4397. exclude: false
  4398. alter:
  4399. alter_text: false
  4400. text: ''
  4401. make_link: false
  4402. path: ''
  4403. absolute: false
  4404. external: false
  4405. replace_spaces: false
  4406. path_case: none
  4407. trim_whitespace: false
  4408. alt: ''
  4409. rel: ''
  4410. link_class: ''
  4411. prefix: ''
  4412. suffix: ''
  4413. target: ''
  4414. nl2br: false
  4415. max_length: 0
  4416. word_boundary: true
  4417. ellipsis: true
  4418. more_link: false
  4419. more_link_text: ''
  4420. more_link_path: ''
  4421. strip_tags: false
  4422. trim: false
  4423. preserve_tags: ''
  4424. html: false
  4425. element_type: ''
  4426. element_class: ''
  4427. element_label_type: ''
  4428. element_label_class: ''
  4429. element_label_colon: true
  4430. element_wrapper_type: ''
  4431. element_wrapper_class: ''
  4432. element_default_classes: true
  4433. empty: ''
  4434. hide_empty: false
  4435. empty_zero: false
  4436. hide_alter_empty: true
  4437. click_sort_column: value
  4438. type: date_range_without_time
  4439. settings:
  4440. timezone_override: ''
  4441. single: 'd F Y'
  4442. single_all_day: 'd F Y'
  4443. one_day: 'd F Y'
  4444. one_month: 'F d \t\o {d}, Y'
  4445. several_months: '\f\r\o\m F d \t\o {F} {d}, Y'
  4446. several_years: '\f\r\o\m F d Y \t\o {F} {d} {Y}'
  4447. group_column: value
  4448. group_columns: { }
  4449. group_rows: true
  4450. delta_limit: 0
  4451. delta_offset: 0
  4452. delta_reversed: false
  4453. delta_first_last: false
  4454. multi_type: separator
  4455. separator: '<br/>'
  4456. field_api_classes: false
  4457. plugin_id: field
  4458. field_page_liee:
  4459. id: field_page_liee
  4460. table: node__field_page_liee
  4461. field: field_page_liee
  4462. relationship: none
  4463. group_type: group
  4464. admin_label: ''
  4465. label: 'Page(s) liée(s)'
  4466. exclude: false
  4467. alter:
  4468. alter_text: false
  4469. text: ''
  4470. make_link: false
  4471. path: ''
  4472. absolute: false
  4473. external: false
  4474. replace_spaces: false
  4475. path_case: none
  4476. trim_whitespace: false
  4477. alt: ''
  4478. rel: ''
  4479. link_class: ''
  4480. prefix: ''
  4481. suffix: ''
  4482. target: ''
  4483. nl2br: false
  4484. max_length: 0
  4485. word_boundary: true
  4486. ellipsis: true
  4487. more_link: false
  4488. more_link_text: ''
  4489. more_link_path: ''
  4490. strip_tags: false
  4491. trim: false
  4492. preserve_tags: ''
  4493. html: false
  4494. element_type: ''
  4495. element_class: ''
  4496. element_label_type: ''
  4497. element_label_class: ''
  4498. element_label_colon: true
  4499. element_wrapper_type: ''
  4500. element_wrapper_class: ''
  4501. element_default_classes: true
  4502. empty: ''
  4503. hide_empty: false
  4504. empty_zero: false
  4505. hide_alter_empty: true
  4506. click_sort_column: target_id
  4507. type: entity_reference_label
  4508. settings:
  4509. link: true
  4510. group_column: target_id
  4511. group_columns: { }
  4512. group_rows: true
  4513. delta_limit: 0
  4514. delta_offset: 0
  4515. delta_reversed: false
  4516. delta_first_last: false
  4517. multi_type: separator
  4518. separator: '<br/>'
  4519. field_api_classes: false
  4520. plugin_id: field
  4521. name:
  4522. id: name
  4523. table: users_field_data
  4524. field: name
  4525. relationship: uid
  4526. label: Author
  4527. exclude: false
  4528. alter:
  4529. alter_text: false
  4530. element_class: ''
  4531. element_default_classes: true
  4532. empty: ''
  4533. hide_empty: false
  4534. empty_zero: false
  4535. hide_alter_empty: true
  4536. plugin_id: field
  4537. type: user_name
  4538. entity_type: user
  4539. entity_field: name
  4540. translation_status:
  4541. id: translation_status
  4542. table: node_translation
  4543. field: translation_status
  4544. relationship: none
  4545. group_type: group
  4546. admin_label: ''
  4547. label: 'Translation status'
  4548. exclude: false
  4549. alter:
  4550. alter_text: false
  4551. text: ''
  4552. make_link: false
  4553. path: ''
  4554. absolute: false
  4555. external: false
  4556. replace_spaces: false
  4557. path_case: none
  4558. trim_whitespace: false
  4559. alt: ''
  4560. rel: ''
  4561. link_class: ''
  4562. prefix: ''
  4563. suffix: ''
  4564. target: ''
  4565. nl2br: false
  4566. max_length: 0
  4567. word_boundary: true
  4568. ellipsis: true
  4569. more_link: false
  4570. more_link_text: ''
  4571. more_link_path: ''
  4572. strip_tags: false
  4573. trim: false
  4574. preserve_tags: ''
  4575. html: false
  4576. element_type: ''
  4577. element_class: ''
  4578. element_label_type: ''
  4579. element_label_class: ''
  4580. element_label_colon: true
  4581. element_wrapper_type: ''
  4582. element_wrapper_class: ''
  4583. element_default_classes: true
  4584. empty: ''
  4585. hide_empty: false
  4586. empty_zero: false
  4587. hide_alter_empty: true
  4588. type: status
  4589. type_custom_true: ''
  4590. type_custom_false: ''
  4591. not: false
  4592. entity_type: node
  4593. plugin_id: translation_views_status
  4594. changed:
  4595. id: changed
  4596. table: node_field_data
  4597. field: changed
  4598. label: Updated
  4599. exclude: false
  4600. alter:
  4601. alter_text: false
  4602. element_class: ''
  4603. element_default_classes: true
  4604. empty: ''
  4605. hide_empty: false
  4606. empty_zero: false
  4607. hide_alter_empty: true
  4608. type: timestamp
  4609. settings:
  4610. date_format: short
  4611. custom_date_format: ''
  4612. timezone: ''
  4613. plugin_id: field
  4614. entity_type: node
  4615. entity_field: changed
  4616. title: Agenda
  4617. style:
  4618. type: table
  4619. options:
  4620. grouping: { }
  4621. row_class: ''
  4622. default_row_class: true
  4623. override: true
  4624. sticky: true
  4625. caption: ''
  4626. summary: ''
  4627. description: ''
  4628. columns:
  4629. title: title
  4630. status: status
  4631. field_workflow_generic: field_workflow_generic
  4632. operations: title
  4633. field_date: field_date
  4634. field_page_liee: field_page_liee
  4635. name: name
  4636. translation_status: translation_status
  4637. changed: changed
  4638. info:
  4639. title:
  4640. sortable: true
  4641. default_sort_order: asc
  4642. align: ''
  4643. separator: '<br/>'
  4644. empty_column: false
  4645. responsive: ''
  4646. status:
  4647. sortable: true
  4648. default_sort_order: asc
  4649. align: ''
  4650. separator: ''
  4651. empty_column: false
  4652. responsive: ''
  4653. field_workflow_generic:
  4654. sortable: false
  4655. default_sort_order: asc
  4656. align: ''
  4657. separator: ''
  4658. empty_column: false
  4659. responsive: ''
  4660. operations:
  4661. align: ''
  4662. separator: ''
  4663. empty_column: false
  4664. responsive: ''
  4665. field_date:
  4666. align: ''
  4667. separator: ''
  4668. empty_column: false
  4669. responsive: ''
  4670. field_page_liee:
  4671. sortable: false
  4672. default_sort_order: asc
  4673. align: ''
  4674. separator: ''
  4675. empty_column: false
  4676. responsive: ''
  4677. name:
  4678. sortable: false
  4679. default_sort_order: asc
  4680. align: ''
  4681. separator: ''
  4682. empty_column: false
  4683. responsive: priority-low
  4684. translation_status:
  4685. sortable: false
  4686. default_sort_order: asc
  4687. align: ''
  4688. separator: ''
  4689. empty_column: false
  4690. responsive: ''
  4691. changed:
  4692. sortable: true
  4693. default_sort_order: desc
  4694. align: ''
  4695. separator: ''
  4696. empty_column: false
  4697. responsive: priority-low
  4698. default: changed
  4699. empty_table: true
  4700. row:
  4701. type: fields
  4702. options: { }
  4703. display_plugin: page
  4704. display_title: Agenda
  4705. id: page_3
  4706. position: 2
  4707. cache_metadata:
  4708. contexts:
  4709. - 'languages:language_content'
  4710. - 'languages:language_interface'
  4711. - url
  4712. - url.query_args
  4713. - user
  4714. - 'user.node_grants:view'
  4715. - user.roles
  4716. max-age: -1
  4717. tags:
  4718. - 'config:field.storage.node.field_date'
  4719. - 'config:field.storage.node.field_page_liee'
  4720. - 'config:field.storage.node.field_workflow_generic'
  4721. page_4:
  4722. display_options:
  4723. path: admin/content/static
  4724. menu:
  4725. type: tab
  4726. title: Static
  4727. description: ''
  4728. expanded: false
  4729. parent: 'menu_link_content:8b5fed48-c008-4041-9bda-06f997582175'
  4730. weight: -96
  4731. context: '0'
  4732. menu_name: admin
  4733. tab_options:
  4734. type: normal
  4735. title: Content
  4736. description: 'Find and manage content'
  4737. menu_name: admin
  4738. weight: -10
  4739. display_extenders: { }
  4740. display_description: ''
  4741. access:
  4742. type: role
  4743. options:
  4744. role:
  4745. admin: admin
  4746. root: root
  4747. defaults:
  4748. access: false
  4749. filters: false
  4750. filter_groups: false
  4751. fields: false
  4752. title: false
  4753. style: false
  4754. row: false
  4755. filters:
  4756. status_extra:
  4757. id: status_extra
  4758. table: node_field_data
  4759. field: status_extra
  4760. operator: '='
  4761. value: false
  4762. plugin_id: node_status
  4763. group: 1
  4764. entity_type: node
  4765. field_workflow_generic_value:
  4766. id: field_workflow_generic_value
  4767. table: node__field_workflow_generic
  4768. field: field_workflow_generic_value
  4769. relationship: none
  4770. group_type: group
  4771. admin_label: ''
  4772. operator: or
  4773. value: { }
  4774. group: 1
  4775. exposed: true
  4776. expose:
  4777. operator_id: field_workflow_generic_value_op
  4778. label: Workflow
  4779. description: ''
  4780. use_operator: false
  4781. operator: field_workflow_generic_value_op
  4782. identifier: field_workflow_generic_value
  4783. required: false
  4784. remember: false
  4785. multiple: false
  4786. remember_roles:
  4787. authenticated: authenticated
  4788. anonymous: '0'
  4789. collectionneur: '0'
  4790. admin: '0'
  4791. root: '0'
  4792. invite: '0'
  4793. reduce: false
  4794. is_grouped: false
  4795. group_info:
  4796. label: ''
  4797. description: ''
  4798. identifier: ''
  4799. optional: true
  4800. widget: select
  4801. multiple: false
  4802. remember: false
  4803. default_group: All
  4804. default_group_multiple: { }
  4805. group_items: { }
  4806. reduce_duplicates: false
  4807. plugin_id: workflow_state
  4808. title:
  4809. id: title
  4810. table: node_field_data
  4811. field: title
  4812. relationship: none
  4813. group_type: group
  4814. admin_label: ''
  4815. operator: contains
  4816. value: ''
  4817. group: 1
  4818. exposed: true
  4819. expose:
  4820. operator_id: title_op
  4821. label: Title
  4822. description: ''
  4823. use_operator: false
  4824. operator: title_op
  4825. identifier: title
  4826. required: false
  4827. remember: false
  4828. multiple: false
  4829. remember_roles:
  4830. authenticated: authenticated
  4831. anonymous: '0'
  4832. administrator: '0'
  4833. placeholder: ''
  4834. is_grouped: false
  4835. group_info:
  4836. label: ''
  4837. description: ''
  4838. identifier: ''
  4839. optional: true
  4840. widget: select
  4841. multiple: false
  4842. remember: false
  4843. default_group: All
  4844. default_group_multiple: { }
  4845. group_items: { }
  4846. plugin_id: string
  4847. entity_type: node
  4848. entity_field: title
  4849. type:
  4850. id: type
  4851. table: node_field_data
  4852. field: type
  4853. relationship: none
  4854. group_type: group
  4855. admin_label: ''
  4856. operator: in
  4857. value:
  4858. static: static
  4859. group: 1
  4860. exposed: false
  4861. expose:
  4862. operator_id: ''
  4863. label: ''
  4864. description: ''
  4865. use_operator: false
  4866. operator: ''
  4867. identifier: ''
  4868. required: false
  4869. remember: false
  4870. multiple: false
  4871. remember_roles:
  4872. authenticated: authenticated
  4873. reduce: false
  4874. is_grouped: false
  4875. group_info:
  4876. label: ''
  4877. description: ''
  4878. identifier: ''
  4879. optional: true
  4880. widget: select
  4881. multiple: false
  4882. remember: false
  4883. default_group: All
  4884. default_group_multiple: { }
  4885. group_items: { }
  4886. entity_type: node
  4887. entity_field: type
  4888. plugin_id: bundle
  4889. langcode:
  4890. id: langcode
  4891. table: node_field_data
  4892. field: langcode
  4893. relationship: none
  4894. group_type: group
  4895. admin_label: ''
  4896. operator: in
  4897. value:
  4898. '***LANGUAGE_language_interface***': '***LANGUAGE_language_interface***'
  4899. und: und
  4900. group: 1
  4901. exposed: false
  4902. expose:
  4903. operator_id: ''
  4904. label: ''
  4905. description: ''
  4906. use_operator: false
  4907. operator: ''
  4908. identifier: ''
  4909. required: false
  4910. remember: false
  4911. multiple: false
  4912. remember_roles:
  4913. authenticated: authenticated
  4914. reduce: false
  4915. is_grouped: false
  4916. group_info:
  4917. label: ''
  4918. description: ''
  4919. identifier: ''
  4920. optional: true
  4921. widget: select
  4922. multiple: false
  4923. remember: false
  4924. default_group: All
  4925. default_group_multiple: { }
  4926. group_items: { }
  4927. entity_type: node
  4928. entity_field: langcode
  4929. plugin_id: language
  4930. translation_target_language:
  4931. id: translation_target_language
  4932. table: node_translation
  4933. field: translation_target_language
  4934. relationship: none
  4935. group_type: group
  4936. admin_label: ''
  4937. operator: '='
  4938. value: en
  4939. group: 1
  4940. exposed: true
  4941. expose:
  4942. operator_id: ''
  4943. label: 'Target language'
  4944. description: ''
  4945. use_operator: false
  4946. operator: translation_target_language_op
  4947. identifier: translation_target_language
  4948. required: false
  4949. remember: true
  4950. multiple: false
  4951. remember_roles:
  4952. authenticated: authenticated
  4953. anonymous: '0'
  4954. collectionneur: '0'
  4955. admin: '0'
  4956. root: '0'
  4957. invite: '0'
  4958. user: '0'
  4959. is_grouped: false
  4960. group_info:
  4961. label: ''
  4962. description: ''
  4963. identifier: ''
  4964. optional: true
  4965. widget: select
  4966. multiple: false
  4967. remember: false
  4968. default_group: All
  4969. default_group_multiple: { }
  4970. group_items: { }
  4971. remove: false
  4972. entity_type: node
  4973. plugin_id: translation_views_target_language
  4974. filter_groups:
  4975. operator: AND
  4976. groups:
  4977. 1: AND
  4978. fields:
  4979. field_visuel:
  4980. id: field_visuel
  4981. table: node__field_visuel
  4982. field: field_visuel
  4983. relationship: none
  4984. group_type: group
  4985. admin_label: ''
  4986. label: Visuel
  4987. exclude: false
  4988. alter:
  4989. alter_text: false
  4990. text: ''
  4991. make_link: false
  4992. path: ''
  4993. absolute: false
  4994. external: false
  4995. replace_spaces: false
  4996. path_case: none
  4997. trim_whitespace: false
  4998. alt: ''
  4999. rel: ''
  5000. link_class: ''
  5001. prefix: ''
  5002. suffix: ''
  5003. target: ''
  5004. nl2br: false
  5005. max_length: 0
  5006. word_boundary: true
  5007. ellipsis: true
  5008. more_link: false
  5009. more_link_text: ''
  5010. more_link_path: ''
  5011. strip_tags: false
  5012. trim: false
  5013. preserve_tags: ''
  5014. html: false
  5015. element_type: ''
  5016. element_class: ''
  5017. element_label_type: ''
  5018. element_label_class: ''
  5019. element_label_colon: true
  5020. element_wrapper_type: ''
  5021. element_wrapper_class: ''
  5022. element_default_classes: true
  5023. empty: ''
  5024. hide_empty: false
  5025. empty_zero: false
  5026. hide_alter_empty: true
  5027. click_sort_column: target_id
  5028. type: image
  5029. settings:
  5030. image_style: thumbnail
  5031. image_link: ''
  5032. group_column: ''
  5033. group_columns: { }
  5034. group_rows: true
  5035. delta_limit: 0
  5036. delta_offset: 0
  5037. delta_reversed: false
  5038. delta_first_last: false
  5039. multi_type: separator
  5040. separator: ', '
  5041. field_api_classes: false
  5042. plugin_id: field
  5043. title:
  5044. id: title
  5045. table: node_field_data
  5046. field: title
  5047. label: Title
  5048. exclude: false
  5049. alter:
  5050. alter_text: false
  5051. element_class: ''
  5052. element_default_classes: true
  5053. empty: ''
  5054. hide_empty: false
  5055. empty_zero: false
  5056. hide_alter_empty: true
  5057. entity_type: node
  5058. entity_field: title
  5059. type: string
  5060. settings:
  5061. link_to_entity: true
  5062. plugin_id: field
  5063. field_workflow_generic:
  5064. id: field_workflow_generic
  5065. table: node__field_workflow_generic
  5066. field: field_workflow_generic
  5067. relationship: none
  5068. group_type: group
  5069. admin_label: ''
  5070. label: Workflow
  5071. exclude: false
  5072. alter:
  5073. alter_text: false
  5074. text: ''
  5075. make_link: false
  5076. path: ''
  5077. absolute: false
  5078. external: false
  5079. replace_spaces: false
  5080. path_case: none
  5081. trim_whitespace: false
  5082. alt: ''
  5083. rel: ''
  5084. link_class: ''
  5085. prefix: ''
  5086. suffix: ''
  5087. target: ''
  5088. nl2br: false
  5089. max_length: 0
  5090. word_boundary: true
  5091. ellipsis: true
  5092. more_link: false
  5093. more_link_text: ''
  5094. more_link_path: ''
  5095. strip_tags: false
  5096. trim: false
  5097. preserve_tags: ''
  5098. html: false
  5099. element_type: ''
  5100. element_class: ''
  5101. element_label_type: ''
  5102. element_label_class: ''
  5103. element_label_colon: true
  5104. element_wrapper_type: ''
  5105. element_wrapper_class: ''
  5106. element_default_classes: true
  5107. empty: ''
  5108. hide_empty: false
  5109. empty_zero: false
  5110. hide_alter_empty: true
  5111. click_sort_column: value
  5112. type: list_default
  5113. settings: { }
  5114. group_column: value
  5115. group_columns: { }
  5116. group_rows: true
  5117. delta_limit: 0
  5118. delta_offset: 0
  5119. delta_reversed: false
  5120. delta_first_last: false
  5121. multi_type: separator
  5122. separator: ', '
  5123. field_api_classes: false
  5124. plugin_id: field
  5125. operations:
  5126. id: operations
  5127. table: node
  5128. field: operations
  5129. relationship: none
  5130. group_type: group
  5131. admin_label: ''
  5132. label: Operations
  5133. exclude: false
  5134. alter:
  5135. alter_text: false
  5136. text: ''
  5137. make_link: false
  5138. path: ''
  5139. absolute: false
  5140. external: false
  5141. replace_spaces: false
  5142. path_case: none
  5143. trim_whitespace: false
  5144. alt: ''
  5145. rel: ''
  5146. link_class: ''
  5147. prefix: ''
  5148. suffix: ''
  5149. target: ''
  5150. nl2br: false
  5151. max_length: 0
  5152. word_boundary: true
  5153. ellipsis: true
  5154. more_link: false
  5155. more_link_text: ''
  5156. more_link_path: ''
  5157. strip_tags: false
  5158. trim: false
  5159. preserve_tags: ''
  5160. html: false
  5161. element_type: ''
  5162. element_class: ''
  5163. element_label_type: ''
  5164. element_label_class: ''
  5165. element_label_colon: true
  5166. element_wrapper_type: ''
  5167. element_wrapper_class: ''
  5168. element_default_classes: true
  5169. empty: ''
  5170. hide_empty: false
  5171. empty_zero: false
  5172. hide_alter_empty: true
  5173. destination: true
  5174. plugin_id: entity_operations
  5175. name:
  5176. id: name
  5177. table: users_field_data
  5178. field: name
  5179. relationship: uid
  5180. label: Author
  5181. exclude: false
  5182. alter:
  5183. alter_text: false
  5184. element_class: ''
  5185. element_default_classes: true
  5186. empty: ''
  5187. hide_empty: false
  5188. empty_zero: false
  5189. hide_alter_empty: true
  5190. plugin_id: field
  5191. type: user_name
  5192. entity_type: user
  5193. entity_field: name
  5194. field_afficher_en_page_d_acceuil:
  5195. id: field_afficher_en_page_d_acceuil
  5196. table: node__field_afficher_en_page_d_acceuil
  5197. field: field_afficher_en_page_d_acceuil
  5198. relationship: none
  5199. group_type: group
  5200. admin_label: ''
  5201. label: 'Afficher en page d''acceuil'
  5202. exclude: false
  5203. alter:
  5204. alter_text: false
  5205. text: ''
  5206. make_link: false
  5207. path: ''
  5208. absolute: false
  5209. external: false
  5210. replace_spaces: false
  5211. path_case: none
  5212. trim_whitespace: false
  5213. alt: ''
  5214. rel: ''
  5215. link_class: ''
  5216. prefix: ''
  5217. suffix: ''
  5218. target: ''
  5219. nl2br: false
  5220. max_length: 0
  5221. word_boundary: true
  5222. ellipsis: true
  5223. more_link: false
  5224. more_link_text: ''
  5225. more_link_path: ''
  5226. strip_tags: false
  5227. trim: false
  5228. preserve_tags: ''
  5229. html: false
  5230. element_type: ''
  5231. element_class: ''
  5232. element_label_type: ''
  5233. element_label_class: ''
  5234. element_label_colon: true
  5235. element_wrapper_type: ''
  5236. element_wrapper_class: ''
  5237. element_default_classes: true
  5238. empty: ''
  5239. hide_empty: false
  5240. empty_zero: false
  5241. hide_alter_empty: true
  5242. click_sort_column: value
  5243. type: boolean
  5244. settings:
  5245. format: yes-no
  5246. format_custom_true: ''
  5247. format_custom_false: ''
  5248. group_column: value
  5249. group_columns: { }
  5250. group_rows: true
  5251. delta_limit: 0
  5252. delta_offset: 0
  5253. delta_reversed: false
  5254. delta_first_last: false
  5255. multi_type: separator
  5256. separator: ', '
  5257. field_api_classes: false
  5258. plugin_id: field
  5259. translation_status:
  5260. id: translation_status
  5261. table: node_translation
  5262. field: translation_status
  5263. relationship: none
  5264. group_type: group
  5265. admin_label: ''
  5266. label: 'Translation status'
  5267. exclude: false
  5268. alter:
  5269. alter_text: false
  5270. text: ''
  5271. make_link: false
  5272. path: ''
  5273. absolute: false
  5274. external: false
  5275. replace_spaces: false
  5276. path_case: none
  5277. trim_whitespace: false
  5278. alt: ''
  5279. rel: ''
  5280. link_class: ''
  5281. prefix: ''
  5282. suffix: ''
  5283. target: ''
  5284. nl2br: false
  5285. max_length: 0
  5286. word_boundary: true
  5287. ellipsis: true
  5288. more_link: false
  5289. more_link_text: ''
  5290. more_link_path: ''
  5291. strip_tags: false
  5292. trim: false
  5293. preserve_tags: ''
  5294. html: false
  5295. element_type: ''
  5296. element_class: ''
  5297. element_label_type: ''
  5298. element_label_class: ''
  5299. element_label_colon: true
  5300. element_wrapper_type: ''
  5301. element_wrapper_class: ''
  5302. element_default_classes: true
  5303. empty: ''
  5304. hide_empty: false
  5305. empty_zero: false
  5306. hide_alter_empty: true
  5307. type: status
  5308. type_custom_true: ''
  5309. type_custom_false: ''
  5310. not: false
  5311. entity_type: node
  5312. plugin_id: translation_views_status
  5313. changed:
  5314. id: changed
  5315. table: node_field_data
  5316. field: changed
  5317. label: Updated
  5318. exclude: false
  5319. alter:
  5320. alter_text: false
  5321. element_class: ''
  5322. element_default_classes: true
  5323. empty: ''
  5324. hide_empty: false
  5325. empty_zero: false
  5326. hide_alter_empty: true
  5327. type: timestamp
  5328. settings:
  5329. date_format: short
  5330. custom_date_format: ''
  5331. timezone: ''
  5332. plugin_id: field
  5333. entity_type: node
  5334. entity_field: changed
  5335. status:
  5336. id: status
  5337. table: node_field_data
  5338. field: status
  5339. relationship: none
  5340. group_type: group
  5341. admin_label: ''
  5342. label: Status
  5343. exclude: true
  5344. alter:
  5345. alter_text: false
  5346. text: ''
  5347. make_link: false
  5348. path: ''
  5349. absolute: false
  5350. external: false
  5351. replace_spaces: false
  5352. path_case: none
  5353. trim_whitespace: false
  5354. alt: ''
  5355. rel: ''
  5356. link_class: ''
  5357. prefix: ''
  5358. suffix: ''
  5359. target: ''
  5360. nl2br: false
  5361. max_length: 0
  5362. word_boundary: true
  5363. ellipsis: true
  5364. more_link: false
  5365. more_link_text: ''
  5366. more_link_path: ''
  5367. strip_tags: false
  5368. trim: false
  5369. preserve_tags: ''
  5370. html: false
  5371. element_type: ''
  5372. element_class: ''
  5373. element_label_type: ''
  5374. element_label_class: ''
  5375. element_label_colon: true
  5376. element_wrapper_type: ''
  5377. element_wrapper_class: ''
  5378. element_default_classes: true
  5379. empty: ''
  5380. hide_empty: false
  5381. empty_zero: false
  5382. hide_alter_empty: true
  5383. click_sort_column: value
  5384. type: boolean
  5385. settings:
  5386. format: custom
  5387. format_custom_true: Published
  5388. format_custom_false: Unpublished
  5389. group_column: value
  5390. group_columns: { }
  5391. group_rows: true
  5392. delta_limit: 0
  5393. delta_offset: 0
  5394. delta_reversed: false
  5395. delta_first_last: false
  5396. multi_type: separator
  5397. separator: ', '
  5398. field_api_classes: false
  5399. plugin_id: field
  5400. entity_type: node
  5401. entity_field: status
  5402. title: Static
  5403. style:
  5404. type: table
  5405. options:
  5406. grouping: { }
  5407. row_class: ''
  5408. default_row_class: true
  5409. override: true
  5410. sticky: true
  5411. caption: ''
  5412. summary: ''
  5413. description: ''
  5414. columns:
  5415. field_visuel: field_visuel
  5416. title: title
  5417. field_workflow_generic: field_workflow_generic
  5418. operations: title
  5419. translation_status: translation_status
  5420. name: name
  5421. changed: changed
  5422. status: status
  5423. field_afficher_en_page_d_acceuil: field_afficher_en_page_d_acceuil
  5424. info:
  5425. field_visuel:
  5426. sortable: false
  5427. default_sort_order: asc
  5428. align: ''
  5429. separator: ''
  5430. empty_column: false
  5431. responsive: ''
  5432. title:
  5433. sortable: true
  5434. default_sort_order: asc
  5435. align: ''
  5436. separator: '<br/>'
  5437. empty_column: false
  5438. responsive: ''
  5439. field_workflow_generic:
  5440. sortable: false
  5441. default_sort_order: asc
  5442. align: ''
  5443. separator: ''
  5444. empty_column: false
  5445. responsive: ''
  5446. operations:
  5447. align: ''
  5448. separator: ''
  5449. empty_column: false
  5450. responsive: ''
  5451. translation_status:
  5452. sortable: false
  5453. default_sort_order: asc
  5454. align: ''
  5455. separator: ''
  5456. empty_column: false
  5457. responsive: ''
  5458. name:
  5459. sortable: false
  5460. default_sort_order: asc
  5461. align: ''
  5462. separator: ''
  5463. empty_column: false
  5464. responsive: priority-low
  5465. changed:
  5466. sortable: true
  5467. default_sort_order: desc
  5468. align: ''
  5469. separator: ''
  5470. empty_column: false
  5471. responsive: priority-low
  5472. status:
  5473. sortable: true
  5474. default_sort_order: asc
  5475. align: ''
  5476. separator: ''
  5477. empty_column: false
  5478. responsive: ''
  5479. field_afficher_en_page_d_acceuil:
  5480. sortable: false
  5481. default_sort_order: asc
  5482. align: ''
  5483. separator: ''
  5484. empty_column: false
  5485. responsive: ''
  5486. default: changed
  5487. empty_table: true
  5488. row:
  5489. type: fields
  5490. options: { }
  5491. display_plugin: page
  5492. display_title: Static
  5493. id: page_4
  5494. position: 2
  5495. cache_metadata:
  5496. contexts:
  5497. - 'languages:language_content'
  5498. - 'languages:language_interface'
  5499. - url
  5500. - url.query_args
  5501. - user
  5502. - 'user.node_grants:view'
  5503. - user.roles
  5504. max-age: -1
  5505. tags:
  5506. - 'config:field.storage.node.field_afficher_en_page_d_acceuil'
  5507. - 'config:field.storage.node.field_visuel'
  5508. - 'config:field.storage.node.field_workflow_generic'