views.view.content.yml 121 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377
  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. - datetime_range
  40. - image
  41. - node
  42. - options
  43. - taxonomy
  44. - text
  45. - user
  46. - workflow
  47. _core:
  48. default_config_hash: YIwhIF9MSP1E_HMam6MrYeti_UqMXQiLDMjDsPFKK8s
  49. id: content
  50. label: Content
  51. module: node
  52. description: 'Find and manage content.'
  53. tag: default
  54. base_table: node_field_data
  55. base_field: nid
  56. core: 8.x
  57. display:
  58. default:
  59. display_options:
  60. access:
  61. type: role
  62. options:
  63. role:
  64. collectionneur: collectionneur
  65. admin: admin
  66. root: root
  67. cache:
  68. type: tag
  69. query:
  70. type: views_query
  71. options:
  72. disable_sql_rewrite: false
  73. distinct: true
  74. replica: false
  75. query_comment: ''
  76. query_tags: { }
  77. exposed_form:
  78. type: basic
  79. options:
  80. submit_button: Filter
  81. reset_button: true
  82. reset_button_label: Reset
  83. exposed_sorts_label: 'Sort by'
  84. expose_sort_order: true
  85. sort_asc_label: Asc
  86. sort_desc_label: Desc
  87. pager:
  88. type: full
  89. options:
  90. items_per_page: 50
  91. tags:
  92. previous: '‹ Previous'
  93. next: 'Suivant ›'
  94. first: '« First'
  95. last: 'Last »'
  96. style:
  97. type: table
  98. options:
  99. grouping: { }
  100. row_class: ''
  101. default_row_class: true
  102. override: true
  103. sticky: true
  104. caption: ''
  105. summary: ''
  106. description: ''
  107. columns:
  108. title: title
  109. field_son: title
  110. status: status
  111. field_workflow: title
  112. operations: title
  113. field_description: field_description
  114. field_nbr_locuteurs: field_nbr_locuteurs
  115. body: body
  116. field_entrees: field_entrees
  117. field_genres: field_genres
  118. field_langues: field_langues
  119. name: name
  120. changed: changed
  121. field_collectionneurs: field_collectionneurs
  122. field_locuteurs: field_locuteurs
  123. info:
  124. title:
  125. sortable: true
  126. default_sort_order: asc
  127. align: ''
  128. separator: '<br/>'
  129. empty_column: false
  130. responsive: ''
  131. field_son:
  132. align: ''
  133. separator: ''
  134. empty_column: false
  135. responsive: ''
  136. status:
  137. sortable: true
  138. default_sort_order: asc
  139. align: ''
  140. separator: ''
  141. empty_column: false
  142. responsive: ''
  143. field_workflow:
  144. sortable: false
  145. default_sort_order: asc
  146. align: ''
  147. separator: ''
  148. empty_column: false
  149. responsive: ''
  150. operations:
  151. align: ''
  152. separator: ''
  153. empty_column: false
  154. responsive: ''
  155. field_description:
  156. sortable: false
  157. default_sort_order: asc
  158. align: ''
  159. separator: ''
  160. empty_column: false
  161. responsive: ''
  162. field_nbr_locuteurs:
  163. sortable: false
  164. default_sort_order: asc
  165. align: ''
  166. separator: ''
  167. empty_column: false
  168. responsive: ''
  169. body:
  170. sortable: false
  171. default_sort_order: asc
  172. align: ''
  173. separator: ''
  174. empty_column: false
  175. responsive: ''
  176. field_entrees:
  177. align: ''
  178. separator: ''
  179. empty_column: false
  180. responsive: ''
  181. field_genres:
  182. align: ''
  183. separator: ''
  184. empty_column: false
  185. responsive: ''
  186. field_langues:
  187. align: ''
  188. separator: ''
  189. empty_column: false
  190. responsive: ''
  191. name:
  192. sortable: false
  193. default_sort_order: asc
  194. align: ''
  195. separator: ''
  196. empty_column: false
  197. responsive: priority-low
  198. changed:
  199. sortable: true
  200. default_sort_order: desc
  201. align: ''
  202. separator: ''
  203. empty_column: false
  204. responsive: priority-low
  205. field_collectionneurs:
  206. align: ''
  207. separator: ''
  208. empty_column: false
  209. responsive: ''
  210. field_locuteurs:
  211. align: ''
  212. separator: ''
  213. empty_column: false
  214. responsive: ''
  215. default: changed
  216. empty_table: true
  217. row:
  218. type: fields
  219. fields:
  220. node_bulk_form:
  221. id: node_bulk_form
  222. table: node
  223. field: node_bulk_form
  224. label: ''
  225. exclude: false
  226. alter:
  227. alter_text: false
  228. element_class: ''
  229. element_default_classes: true
  230. empty: ''
  231. hide_empty: false
  232. empty_zero: false
  233. hide_alter_empty: true
  234. plugin_id: node_bulk_form
  235. entity_type: node
  236. field_visuel:
  237. id: field_visuel
  238. table: node__field_visuel
  239. field: field_visuel
  240. relationship: none
  241. group_type: group
  242. admin_label: ''
  243. label: Visuel
  244. exclude: false
  245. alter:
  246. alter_text: false
  247. text: ''
  248. make_link: false
  249. path: ''
  250. absolute: false
  251. external: false
  252. replace_spaces: false
  253. path_case: none
  254. trim_whitespace: false
  255. alt: ''
  256. rel: ''
  257. link_class: ''
  258. prefix: ''
  259. suffix: ''
  260. target: ''
  261. nl2br: false
  262. max_length: 0
  263. word_boundary: true
  264. ellipsis: true
  265. more_link: false
  266. more_link_text: ''
  267. more_link_path: ''
  268. strip_tags: false
  269. trim: false
  270. preserve_tags: ''
  271. html: false
  272. element_type: ''
  273. element_class: ''
  274. element_label_type: ''
  275. element_label_class: ''
  276. element_label_colon: true
  277. element_wrapper_type: ''
  278. element_wrapper_class: ''
  279. element_default_classes: true
  280. empty: ''
  281. hide_empty: false
  282. empty_zero: false
  283. hide_alter_empty: true
  284. click_sort_column: target_id
  285. type: image
  286. settings:
  287. image_style: thumbnail
  288. image_link: ''
  289. group_column: ''
  290. group_columns: { }
  291. group_rows: true
  292. delta_limit: 0
  293. delta_offset: 0
  294. delta_reversed: false
  295. delta_first_last: false
  296. multi_type: separator
  297. separator: ', '
  298. field_api_classes: false
  299. plugin_id: field
  300. type:
  301. id: type
  302. table: node_field_data
  303. field: type
  304. relationship: none
  305. group_type: group
  306. admin_label: ''
  307. label: 'Content type'
  308. exclude: false
  309. alter:
  310. alter_text: false
  311. text: ''
  312. make_link: false
  313. path: ''
  314. absolute: false
  315. external: false
  316. replace_spaces: false
  317. path_case: none
  318. trim_whitespace: false
  319. alt: ''
  320. rel: ''
  321. link_class: ''
  322. prefix: ''
  323. suffix: ''
  324. target: ''
  325. nl2br: false
  326. max_length: 0
  327. word_boundary: true
  328. ellipsis: true
  329. more_link: false
  330. more_link_text: ''
  331. more_link_path: ''
  332. strip_tags: false
  333. trim: false
  334. preserve_tags: ''
  335. html: false
  336. element_type: ''
  337. element_class: ''
  338. element_label_type: ''
  339. element_label_class: ''
  340. element_label_colon: true
  341. element_wrapper_type: ''
  342. element_wrapper_class: ''
  343. element_default_classes: true
  344. empty: ''
  345. hide_empty: false
  346. empty_zero: false
  347. hide_alter_empty: true
  348. click_sort_column: target_id
  349. type: entity_reference_label
  350. settings:
  351. link: false
  352. group_column: target_id
  353. group_columns: { }
  354. group_rows: true
  355. delta_limit: 0
  356. delta_offset: 0
  357. delta_reversed: false
  358. delta_first_last: false
  359. multi_type: separator
  360. separator: ', '
  361. field_api_classes: false
  362. entity_type: node
  363. entity_field: type
  364. plugin_id: field
  365. field_page_type:
  366. id: field_page_type
  367. table: node__field_page_type
  368. field: field_page_type
  369. relationship: none
  370. group_type: group
  371. admin_label: ''
  372. label: 'Type de page'
  373. exclude: false
  374. alter:
  375. alter_text: false
  376. text: ''
  377. make_link: false
  378. path: ''
  379. absolute: false
  380. external: false
  381. replace_spaces: false
  382. path_case: none
  383. trim_whitespace: false
  384. alt: ''
  385. rel: ''
  386. link_class: ''
  387. prefix: ''
  388. suffix: ''
  389. target: ''
  390. nl2br: false
  391. max_length: 0
  392. word_boundary: true
  393. ellipsis: true
  394. more_link: false
  395. more_link_text: ''
  396. more_link_path: ''
  397. strip_tags: false
  398. trim: false
  399. preserve_tags: ''
  400. html: false
  401. element_type: ''
  402. element_class: ''
  403. element_label_type: ''
  404. element_label_class: ''
  405. element_label_colon: true
  406. element_wrapper_type: ''
  407. element_wrapper_class: ''
  408. element_default_classes: true
  409. empty: ''
  410. hide_empty: false
  411. empty_zero: false
  412. hide_alter_empty: true
  413. click_sort_column: target_id
  414. type: entity_reference_label
  415. settings:
  416. link: false
  417. group_column: target_id
  418. group_columns: { }
  419. group_rows: true
  420. delta_limit: 0
  421. delta_offset: 0
  422. delta_reversed: false
  423. delta_first_last: false
  424. multi_type: separator
  425. separator: ', '
  426. field_api_classes: false
  427. plugin_id: field
  428. title:
  429. id: title
  430. table: node_field_data
  431. field: title
  432. label: Title
  433. exclude: false
  434. alter:
  435. alter_text: false
  436. element_class: ''
  437. element_default_classes: true
  438. empty: ''
  439. hide_empty: false
  440. empty_zero: false
  441. hide_alter_empty: true
  442. entity_type: node
  443. entity_field: title
  444. type: string
  445. settings:
  446. link_to_entity: true
  447. plugin_id: field
  448. field_son:
  449. id: field_son
  450. table: node__field_son
  451. field: field_son
  452. relationship: none
  453. group_type: group
  454. admin_label: ''
  455. label: Son
  456. exclude: false
  457. alter:
  458. alter_text: false
  459. text: ''
  460. make_link: false
  461. path: ''
  462. absolute: false
  463. external: false
  464. replace_spaces: false
  465. path_case: none
  466. trim_whitespace: false
  467. alt: ''
  468. rel: ''
  469. link_class: ''
  470. prefix: ''
  471. suffix: ''
  472. target: ''
  473. nl2br: false
  474. max_length: 0
  475. word_boundary: true
  476. ellipsis: true
  477. more_link: false
  478. more_link_text: ''
  479. more_link_path: ''
  480. strip_tags: false
  481. trim: false
  482. preserve_tags: ''
  483. html: false
  484. element_type: ''
  485. element_class: ''
  486. element_label_type: ''
  487. element_label_class: ''
  488. element_label_colon: true
  489. element_wrapper_type: ''
  490. element_wrapper_class: ''
  491. element_default_classes: true
  492. empty: ''
  493. hide_empty: false
  494. empty_zero: false
  495. hide_alter_empty: true
  496. click_sort_column: target_id
  497. type: audiofield_audioplayer
  498. settings:
  499. audio_player: default_mp3_player
  500. audio_player_jplayer_theme: none
  501. audio_player_wavesurfer_combine_files: 0
  502. audio_player_wordpress_combine_files: 0
  503. audio_player_wordpress_animation: 0
  504. audio_player_soundmanager_theme: default
  505. audio_player_initial_volume: '8'
  506. audio_player_autoplay: 0
  507. download_link: 0
  508. group_column: ''
  509. group_columns: { }
  510. group_rows: true
  511. delta_limit: 0
  512. delta_offset: 0
  513. delta_reversed: false
  514. delta_first_last: false
  515. multi_type: separator
  516. separator: ', '
  517. field_api_classes: false
  518. plugin_id: field
  519. term_node_tid:
  520. id: term_node_tid
  521. table: node_field_data
  522. field: term_node_tid
  523. relationship: none
  524. group_type: group
  525. admin_label: ''
  526. label: Entrées
  527. exclude: false
  528. alter:
  529. alter_text: false
  530. text: ''
  531. make_link: false
  532. path: ''
  533. absolute: false
  534. external: false
  535. replace_spaces: false
  536. path_case: none
  537. trim_whitespace: false
  538. alt: ''
  539. rel: ''
  540. link_class: ''
  541. prefix: ''
  542. suffix: ''
  543. target: ''
  544. nl2br: false
  545. max_length: 0
  546. word_boundary: true
  547. ellipsis: true
  548. more_link: false
  549. more_link_text: ''
  550. more_link_path: ''
  551. strip_tags: false
  552. trim: false
  553. preserve_tags: ''
  554. html: false
  555. element_type: ''
  556. element_class: ''
  557. element_label_type: ''
  558. element_label_class: ''
  559. element_label_colon: true
  560. element_wrapper_type: ''
  561. element_wrapper_class: ''
  562. element_default_classes: true
  563. empty: ''
  564. hide_empty: false
  565. empty_zero: false
  566. hide_alter_empty: true
  567. type: ul
  568. separator: ', '
  569. link_to_taxonomy: false
  570. limit: true
  571. vids:
  572. entrees: entrees
  573. collectionneurs: '0'
  574. genres: '0'
  575. langues: '0'
  576. locuteurs: '0'
  577. page_type: '0'
  578. entity_type: node
  579. plugin_id: taxonomy_index_tid
  580. name:
  581. id: name
  582. table: users_field_data
  583. field: name
  584. relationship: uid
  585. label: Author
  586. exclude: false
  587. alter:
  588. alter_text: false
  589. element_class: ''
  590. element_default_classes: true
  591. empty: ''
  592. hide_empty: false
  593. empty_zero: false
  594. hide_alter_empty: true
  595. plugin_id: field
  596. type: user_name
  597. entity_type: user
  598. entity_field: name
  599. changed:
  600. id: changed
  601. table: node_field_data
  602. field: changed
  603. label: Updated
  604. exclude: false
  605. alter:
  606. alter_text: false
  607. element_class: ''
  608. element_default_classes: true
  609. empty: ''
  610. hide_empty: false
  611. empty_zero: false
  612. hide_alter_empty: true
  613. type: timestamp
  614. settings:
  615. date_format: short
  616. custom_date_format: ''
  617. timezone: ''
  618. plugin_id: field
  619. entity_type: node
  620. entity_field: changed
  621. status:
  622. id: status
  623. table: node_field_data
  624. field: status
  625. label: Status
  626. exclude: false
  627. alter:
  628. alter_text: false
  629. element_class: ''
  630. element_default_classes: true
  631. empty: ''
  632. hide_empty: false
  633. empty_zero: false
  634. hide_alter_empty: true
  635. type: boolean
  636. settings:
  637. format: custom
  638. format_custom_true: Published
  639. format_custom_false: Unpublished
  640. plugin_id: field
  641. entity_type: node
  642. entity_field: status
  643. operations:
  644. id: operations
  645. table: node
  646. field: operations
  647. relationship: none
  648. group_type: group
  649. admin_label: ''
  650. label: Operations
  651. exclude: false
  652. alter:
  653. alter_text: false
  654. text: ''
  655. make_link: false
  656. path: ''
  657. absolute: false
  658. external: false
  659. replace_spaces: false
  660. path_case: none
  661. trim_whitespace: false
  662. alt: ''
  663. rel: ''
  664. link_class: ''
  665. prefix: ''
  666. suffix: ''
  667. target: ''
  668. nl2br: false
  669. max_length: 0
  670. word_boundary: true
  671. ellipsis: true
  672. more_link: false
  673. more_link_text: ''
  674. more_link_path: ''
  675. strip_tags: false
  676. trim: false
  677. preserve_tags: ''
  678. html: false
  679. element_type: ''
  680. element_class: ''
  681. element_label_type: ''
  682. element_label_class: ''
  683. element_label_colon: true
  684. element_wrapper_type: ''
  685. element_wrapper_class: ''
  686. element_default_classes: true
  687. empty: ''
  688. hide_empty: false
  689. empty_zero: false
  690. hide_alter_empty: true
  691. destination: true
  692. plugin_id: entity_operations
  693. filters:
  694. status_extra:
  695. id: status_extra
  696. table: node_field_data
  697. field: status_extra
  698. operator: '='
  699. value: false
  700. plugin_id: node_status
  701. group: 1
  702. entity_type: node
  703. status:
  704. id: status
  705. table: node_field_data
  706. field: status
  707. relationship: none
  708. group_type: group
  709. admin_label: ''
  710. operator: '='
  711. value: '1'
  712. group: 1
  713. exposed: true
  714. expose:
  715. operator_id: ''
  716. label: Status
  717. description: ''
  718. use_operator: false
  719. operator: status_op
  720. identifier: status
  721. required: false
  722. remember: false
  723. multiple: false
  724. remember_roles:
  725. authenticated: authenticated
  726. is_grouped: true
  727. group_info:
  728. label: 'Published status'
  729. description: ''
  730. identifier: status
  731. optional: true
  732. widget: select
  733. multiple: false
  734. remember: false
  735. default_group: All
  736. default_group_multiple: { }
  737. group_items:
  738. 1:
  739. title: Published
  740. operator: '='
  741. value: '1'
  742. 2:
  743. title: Unpublished
  744. operator: '='
  745. value: '0'
  746. plugin_id: boolean
  747. entity_type: node
  748. entity_field: status
  749. type:
  750. id: type
  751. table: node_field_data
  752. field: type
  753. relationship: none
  754. group_type: group
  755. admin_label: ''
  756. operator: in
  757. value:
  758. autre_son: autre_son
  759. fil: fil
  760. page: page
  761. evenement: evenement
  762. group: 1
  763. exposed: false
  764. expose:
  765. operator_id: type_op
  766. label: 'Content type'
  767. description: ''
  768. use_operator: false
  769. operator: type_op
  770. identifier: type
  771. required: false
  772. remember: false
  773. multiple: false
  774. remember_roles:
  775. authenticated: authenticated
  776. anonymous: '0'
  777. collectionneur: '0'
  778. admin: '0'
  779. root: '0'
  780. invite: '0'
  781. reduce: true
  782. is_grouped: false
  783. group_info:
  784. label: ''
  785. description: ''
  786. identifier: ''
  787. optional: true
  788. widget: select
  789. multiple: false
  790. remember: false
  791. default_group: All
  792. default_group_multiple: { }
  793. group_items: { }
  794. plugin_id: bundle
  795. entity_type: node
  796. entity_field: type
  797. title:
  798. id: title
  799. table: node_field_data
  800. field: title
  801. relationship: none
  802. group_type: group
  803. admin_label: ''
  804. operator: contains
  805. value: ''
  806. group: 1
  807. exposed: true
  808. expose:
  809. operator_id: title_op
  810. label: Title
  811. description: ''
  812. use_operator: false
  813. operator: title_op
  814. identifier: title
  815. required: false
  816. remember: false
  817. multiple: false
  818. remember_roles:
  819. authenticated: authenticated
  820. anonymous: '0'
  821. administrator: '0'
  822. placeholder: ''
  823. is_grouped: false
  824. group_info:
  825. label: ''
  826. description: ''
  827. identifier: ''
  828. optional: true
  829. widget: select
  830. multiple: false
  831. remember: false
  832. default_group: All
  833. default_group_multiple: { }
  834. group_items: { }
  835. plugin_id: string
  836. entity_type: node
  837. entity_field: title
  838. type_1:
  839. id: type_1
  840. table: node_field_data
  841. field: type
  842. relationship: none
  843. group_type: group
  844. admin_label: ''
  845. operator: 'not in'
  846. value:
  847. enregistrement: enregistrement
  848. group: 1
  849. exposed: false
  850. expose:
  851. operator_id: ''
  852. label: ''
  853. description: ''
  854. use_operator: false
  855. operator: ''
  856. identifier: ''
  857. required: false
  858. remember: false
  859. multiple: false
  860. remember_roles:
  861. authenticated: authenticated
  862. reduce: false
  863. is_grouped: false
  864. group_info:
  865. label: ''
  866. description: ''
  867. identifier: ''
  868. optional: true
  869. widget: select
  870. multiple: false
  871. remember: false
  872. default_group: All
  873. default_group_multiple: { }
  874. group_items: { }
  875. entity_type: node
  876. entity_field: type
  877. plugin_id: bundle
  878. field_page_type_target_id:
  879. id: field_page_type_target_id
  880. table: node__field_page_type
  881. field: field_page_type_target_id
  882. relationship: none
  883. group_type: group
  884. admin_label: ''
  885. operator: or
  886. value: { }
  887. group: 1
  888. exposed: true
  889. expose:
  890. operator_id: field_page_type_target_id_op
  891. label: 'Type de page (field_page_type)'
  892. description: ''
  893. use_operator: false
  894. operator: field_page_type_target_id_op
  895. identifier: field_page_type_target_id
  896. required: false
  897. remember: false
  898. multiple: false
  899. remember_roles:
  900. authenticated: authenticated
  901. anonymous: '0'
  902. collectionneur: '0'
  903. admin: '0'
  904. root: '0'
  905. reduce: false
  906. is_grouped: false
  907. group_info:
  908. label: ''
  909. description: ''
  910. identifier: ''
  911. optional: true
  912. widget: select
  913. multiple: false
  914. remember: false
  915. default_group: All
  916. default_group_multiple: { }
  917. group_items: { }
  918. reduce_duplicates: false
  919. type: select
  920. limit: true
  921. vid: page_type
  922. hierarchy: false
  923. error_message: true
  924. plugin_id: taxonomy_index_tid
  925. sorts: { }
  926. title: Content
  927. empty:
  928. area_text_custom:
  929. id: area_text_custom
  930. table: views
  931. field: area_text_custom
  932. empty: true
  933. content: 'No content available.'
  934. plugin_id: text_custom
  935. arguments: { }
  936. relationships:
  937. uid:
  938. id: uid
  939. table: node_field_data
  940. field: uid
  941. admin_label: author
  942. required: true
  943. plugin_id: standard
  944. show_admin_links: false
  945. filter_groups:
  946. operator: AND
  947. groups:
  948. 1: AND
  949. display_extenders: { }
  950. header:
  951. result:
  952. id: result
  953. table: views
  954. field: result
  955. relationship: none
  956. group_type: group
  957. admin_label: ''
  958. empty: false
  959. content: 'Affichage de @start à @end sur @total'
  960. plugin_id: result
  961. display_plugin: default
  962. display_title: Master
  963. id: default
  964. position: 0
  965. cache_metadata:
  966. contexts:
  967. - 'languages:language_content'
  968. - 'languages:language_interface'
  969. - url
  970. - url.query_args
  971. - user
  972. - 'user.node_grants:view'
  973. - user.roles
  974. max-age: 0
  975. tags:
  976. - 'config:field.storage.node.field_page_type'
  977. - 'config:field.storage.node.field_son'
  978. - 'config:field.storage.node.field_visuel'
  979. page_1:
  980. display_options:
  981. path: admin/content/production
  982. menu:
  983. type: tab
  984. title: Production
  985. description: ''
  986. expanded: false
  987. parent: 'menu_link_content:8b5fed48-c008-4041-9bda-06f997582175'
  988. weight: -98
  989. context: '0'
  990. menu_name: admin
  991. tab_options:
  992. type: normal
  993. title: Content
  994. description: 'Find and manage content'
  995. menu_name: admin
  996. weight: -10
  997. display_extenders: { }
  998. display_description: ''
  999. access:
  1000. type: role
  1001. options:
  1002. role:
  1003. admin: admin
  1004. root: root
  1005. defaults:
  1006. access: false
  1007. filters: false
  1008. filter_groups: false
  1009. fields: false
  1010. title: false
  1011. filters:
  1012. status_extra:
  1013. id: status_extra
  1014. table: node_field_data
  1015. field: status_extra
  1016. operator: '='
  1017. value: false
  1018. plugin_id: node_status
  1019. group: 1
  1020. entity_type: node
  1021. field_workflow_generic_value:
  1022. id: field_workflow_generic_value
  1023. table: node__field_workflow_generic
  1024. field: field_workflow_generic_value
  1025. relationship: none
  1026. group_type: group
  1027. admin_label: ''
  1028. operator: or
  1029. value: { }
  1030. group: 1
  1031. exposed: true
  1032. expose:
  1033. operator_id: field_workflow_generic_value_op
  1034. label: Workflow
  1035. description: ''
  1036. use_operator: false
  1037. operator: field_workflow_generic_value_op
  1038. identifier: field_workflow_generic_value
  1039. required: false
  1040. remember: false
  1041. multiple: false
  1042. remember_roles:
  1043. authenticated: authenticated
  1044. anonymous: '0'
  1045. collectionneur: '0'
  1046. admin: '0'
  1047. root: '0'
  1048. invite: '0'
  1049. reduce: false
  1050. is_grouped: false
  1051. group_info:
  1052. label: ''
  1053. description: ''
  1054. identifier: ''
  1055. optional: true
  1056. widget: select
  1057. multiple: false
  1058. remember: false
  1059. default_group: All
  1060. default_group_multiple: { }
  1061. group_items: { }
  1062. reduce_duplicates: false
  1063. plugin_id: workflow_state
  1064. type:
  1065. id: type
  1066. table: node_field_data
  1067. field: type
  1068. relationship: none
  1069. group_type: group
  1070. admin_label: ''
  1071. operator: in
  1072. value:
  1073. page: page
  1074. group: 1
  1075. exposed: false
  1076. expose:
  1077. operator_id: type_op
  1078. label: 'Content type'
  1079. description: ''
  1080. use_operator: false
  1081. operator: type_op
  1082. identifier: type
  1083. required: false
  1084. remember: false
  1085. multiple: false
  1086. remember_roles:
  1087. authenticated: authenticated
  1088. anonymous: '0'
  1089. collectionneur: '0'
  1090. admin: '0'
  1091. root: '0'
  1092. invite: '0'
  1093. reduce: true
  1094. is_grouped: false
  1095. group_info:
  1096. label: ''
  1097. description: ''
  1098. identifier: ''
  1099. optional: true
  1100. widget: select
  1101. multiple: false
  1102. remember: false
  1103. default_group: All
  1104. default_group_multiple: { }
  1105. group_items: { }
  1106. plugin_id: bundle
  1107. entity_type: node
  1108. entity_field: type
  1109. field_page_type_target_id:
  1110. id: field_page_type_target_id
  1111. table: node__field_page_type
  1112. field: field_page_type_target_id
  1113. relationship: none
  1114. group_type: group
  1115. admin_label: ''
  1116. operator: or
  1117. value: { }
  1118. group: 1
  1119. exposed: true
  1120. expose:
  1121. operator_id: field_page_type_target_id_op
  1122. label: 'Type de page'
  1123. description: ''
  1124. use_operator: false
  1125. operator: field_page_type_target_id_op
  1126. identifier: field_page_type_target_id
  1127. required: false
  1128. remember: false
  1129. multiple: false
  1130. remember_roles:
  1131. authenticated: authenticated
  1132. anonymous: '0'
  1133. collectionneur: '0'
  1134. admin: '0'
  1135. root: '0'
  1136. invite: '0'
  1137. reduce: false
  1138. is_grouped: false
  1139. group_info:
  1140. label: ''
  1141. description: ''
  1142. identifier: ''
  1143. optional: true
  1144. widget: select
  1145. multiple: false
  1146. remember: false
  1147. default_group: All
  1148. default_group_multiple: { }
  1149. group_items: { }
  1150. reduce_duplicates: false
  1151. type: select
  1152. limit: true
  1153. vid: page_type
  1154. hierarchy: false
  1155. error_message: true
  1156. plugin_id: taxonomy_index_tid
  1157. title:
  1158. id: title
  1159. table: node_field_data
  1160. field: title
  1161. relationship: none
  1162. group_type: group
  1163. admin_label: ''
  1164. operator: contains
  1165. value: ''
  1166. group: 1
  1167. exposed: true
  1168. expose:
  1169. operator_id: title_op
  1170. label: Title
  1171. description: ''
  1172. use_operator: false
  1173. operator: title_op
  1174. identifier: title
  1175. required: false
  1176. remember: false
  1177. multiple: false
  1178. remember_roles:
  1179. authenticated: authenticated
  1180. anonymous: '0'
  1181. administrator: '0'
  1182. placeholder: ''
  1183. is_grouped: false
  1184. group_info:
  1185. label: ''
  1186. description: ''
  1187. identifier: ''
  1188. optional: true
  1189. widget: select
  1190. multiple: false
  1191. remember: false
  1192. default_group: All
  1193. default_group_multiple: { }
  1194. group_items: { }
  1195. plugin_id: string
  1196. entity_type: node
  1197. entity_field: title
  1198. langcode:
  1199. id: langcode
  1200. table: node_field_data
  1201. field: langcode
  1202. relationship: none
  1203. group_type: group
  1204. admin_label: ''
  1205. operator: in
  1206. value:
  1207. '***LANGUAGE_language_interface***': '***LANGUAGE_language_interface***'
  1208. und: und
  1209. group: 1
  1210. exposed: false
  1211. expose:
  1212. operator_id: ''
  1213. label: ''
  1214. description: ''
  1215. use_operator: false
  1216. operator: ''
  1217. identifier: ''
  1218. required: false
  1219. remember: false
  1220. multiple: false
  1221. remember_roles:
  1222. authenticated: authenticated
  1223. reduce: false
  1224. is_grouped: false
  1225. group_info:
  1226. label: ''
  1227. description: ''
  1228. identifier: ''
  1229. optional: true
  1230. widget: select
  1231. multiple: false
  1232. remember: false
  1233. default_group: All
  1234. default_group_multiple: { }
  1235. group_items: { }
  1236. entity_type: node
  1237. entity_field: langcode
  1238. plugin_id: language
  1239. filter_groups:
  1240. operator: AND
  1241. groups:
  1242. 1: AND
  1243. fields:
  1244. field_visuel:
  1245. id: field_visuel
  1246. table: node__field_visuel
  1247. field: field_visuel
  1248. relationship: none
  1249. group_type: group
  1250. admin_label: ''
  1251. label: Visuel
  1252. exclude: false
  1253. alter:
  1254. alter_text: false
  1255. text: ''
  1256. make_link: false
  1257. path: ''
  1258. absolute: false
  1259. external: false
  1260. replace_spaces: false
  1261. path_case: none
  1262. trim_whitespace: false
  1263. alt: ''
  1264. rel: ''
  1265. link_class: ''
  1266. prefix: ''
  1267. suffix: ''
  1268. target: ''
  1269. nl2br: false
  1270. max_length: 0
  1271. word_boundary: true
  1272. ellipsis: true
  1273. more_link: false
  1274. more_link_text: ''
  1275. more_link_path: ''
  1276. strip_tags: false
  1277. trim: false
  1278. preserve_tags: ''
  1279. html: false
  1280. element_type: ''
  1281. element_class: ''
  1282. element_label_type: ''
  1283. element_label_class: ''
  1284. element_label_colon: true
  1285. element_wrapper_type: ''
  1286. element_wrapper_class: ''
  1287. element_default_classes: true
  1288. empty: ''
  1289. hide_empty: false
  1290. empty_zero: false
  1291. hide_alter_empty: true
  1292. click_sort_column: target_id
  1293. type: image
  1294. settings:
  1295. image_style: thumbnail
  1296. image_link: ''
  1297. group_column: ''
  1298. group_columns: { }
  1299. group_rows: true
  1300. delta_limit: 0
  1301. delta_offset: 0
  1302. delta_reversed: false
  1303. delta_first_last: false
  1304. multi_type: separator
  1305. separator: ', '
  1306. field_api_classes: false
  1307. plugin_id: field
  1308. field_page_type:
  1309. id: field_page_type
  1310. table: node__field_page_type
  1311. field: field_page_type
  1312. relationship: none
  1313. group_type: group
  1314. admin_label: ''
  1315. label: 'Type de page'
  1316. exclude: false
  1317. alter:
  1318. alter_text: false
  1319. text: ''
  1320. make_link: false
  1321. path: ''
  1322. absolute: false
  1323. external: false
  1324. replace_spaces: false
  1325. path_case: none
  1326. trim_whitespace: false
  1327. alt: ''
  1328. rel: ''
  1329. link_class: ''
  1330. prefix: ''
  1331. suffix: ''
  1332. target: ''
  1333. nl2br: false
  1334. max_length: 0
  1335. word_boundary: true
  1336. ellipsis: true
  1337. more_link: false
  1338. more_link_text: ''
  1339. more_link_path: ''
  1340. strip_tags: false
  1341. trim: false
  1342. preserve_tags: ''
  1343. html: false
  1344. element_type: ''
  1345. element_class: ''
  1346. element_label_type: ''
  1347. element_label_class: ''
  1348. element_label_colon: true
  1349. element_wrapper_type: ''
  1350. element_wrapper_class: ''
  1351. element_default_classes: true
  1352. empty: ''
  1353. hide_empty: false
  1354. empty_zero: false
  1355. hide_alter_empty: true
  1356. click_sort_column: target_id
  1357. type: entity_reference_label
  1358. settings:
  1359. link: false
  1360. group_column: target_id
  1361. group_columns: { }
  1362. group_rows: true
  1363. delta_limit: 0
  1364. delta_offset: 0
  1365. delta_reversed: false
  1366. delta_first_last: false
  1367. multi_type: separator
  1368. separator: ', '
  1369. field_api_classes: false
  1370. plugin_id: field
  1371. title:
  1372. id: title
  1373. table: node_field_data
  1374. field: title
  1375. label: Title
  1376. exclude: false
  1377. alter:
  1378. alter_text: false
  1379. element_class: ''
  1380. element_default_classes: true
  1381. empty: ''
  1382. hide_empty: false
  1383. empty_zero: false
  1384. hide_alter_empty: true
  1385. entity_type: node
  1386. entity_field: title
  1387. type: string
  1388. settings:
  1389. link_to_entity: true
  1390. plugin_id: field
  1391. field_view_mode:
  1392. id: field_view_mode
  1393. table: node__field_view_mode
  1394. field: field_view_mode
  1395. relationship: none
  1396. group_type: group
  1397. admin_label: ''
  1398. label: 'Mode d''affichage'
  1399. exclude: false
  1400. alter:
  1401. alter_text: true
  1402. text: 'Affichage : {{ field_view_mode }}'
  1403. make_link: false
  1404. path: ''
  1405. absolute: false
  1406. external: false
  1407. replace_spaces: false
  1408. path_case: none
  1409. trim_whitespace: false
  1410. alt: ''
  1411. rel: ''
  1412. link_class: ''
  1413. prefix: ''
  1414. suffix: ''
  1415. target: ''
  1416. nl2br: false
  1417. max_length: 0
  1418. word_boundary: true
  1419. ellipsis: true
  1420. more_link: false
  1421. more_link_text: ''
  1422. more_link_path: ''
  1423. strip_tags: false
  1424. trim: false
  1425. preserve_tags: ''
  1426. html: false
  1427. element_type: ''
  1428. element_class: ''
  1429. element_label_type: ''
  1430. element_label_class: ''
  1431. element_label_colon: true
  1432. element_wrapper_type: ''
  1433. element_wrapper_class: ''
  1434. element_default_classes: true
  1435. empty: ''
  1436. hide_empty: false
  1437. empty_zero: false
  1438. hide_alter_empty: true
  1439. click_sort_column: value
  1440. type: list_default
  1441. settings: { }
  1442. group_column: value
  1443. group_columns: { }
  1444. group_rows: true
  1445. delta_limit: 0
  1446. delta_offset: 0
  1447. delta_reversed: false
  1448. delta_first_last: false
  1449. multi_type: separator
  1450. separator: ', '
  1451. field_api_classes: false
  1452. plugin_id: field
  1453. field_workflow_generic:
  1454. id: field_workflow_generic
  1455. table: node__field_workflow_generic
  1456. field: field_workflow_generic
  1457. relationship: none
  1458. group_type: group
  1459. admin_label: ''
  1460. label: Workflow
  1461. exclude: false
  1462. alter:
  1463. alter_text: false
  1464. text: ''
  1465. make_link: false
  1466. path: ''
  1467. absolute: false
  1468. external: false
  1469. replace_spaces: false
  1470. path_case: none
  1471. trim_whitespace: false
  1472. alt: ''
  1473. rel: ''
  1474. link_class: ''
  1475. prefix: ''
  1476. suffix: ''
  1477. target: ''
  1478. nl2br: false
  1479. max_length: 0
  1480. word_boundary: true
  1481. ellipsis: true
  1482. more_link: false
  1483. more_link_text: ''
  1484. more_link_path: ''
  1485. strip_tags: false
  1486. trim: false
  1487. preserve_tags: ''
  1488. html: false
  1489. element_type: ''
  1490. element_class: ''
  1491. element_label_type: ''
  1492. element_label_class: ''
  1493. element_label_colon: true
  1494. element_wrapper_type: ''
  1495. element_wrapper_class: ''
  1496. element_default_classes: true
  1497. empty: ''
  1498. hide_empty: false
  1499. empty_zero: false
  1500. hide_alter_empty: true
  1501. click_sort_column: value
  1502. type: list_default
  1503. settings: { }
  1504. group_column: value
  1505. group_columns: { }
  1506. group_rows: true
  1507. delta_limit: 0
  1508. delta_offset: 0
  1509. delta_reversed: false
  1510. delta_first_last: false
  1511. multi_type: separator
  1512. separator: ', '
  1513. field_api_classes: false
  1514. plugin_id: field
  1515. operations:
  1516. id: operations
  1517. table: node
  1518. field: operations
  1519. relationship: none
  1520. group_type: group
  1521. admin_label: ''
  1522. label: Operations
  1523. exclude: false
  1524. alter:
  1525. alter_text: false
  1526. text: ''
  1527. make_link: false
  1528. path: ''
  1529. absolute: false
  1530. external: false
  1531. replace_spaces: false
  1532. path_case: none
  1533. trim_whitespace: false
  1534. alt: ''
  1535. rel: ''
  1536. link_class: ''
  1537. prefix: ''
  1538. suffix: ''
  1539. target: ''
  1540. nl2br: false
  1541. max_length: 0
  1542. word_boundary: true
  1543. ellipsis: true
  1544. more_link: false
  1545. more_link_text: ''
  1546. more_link_path: ''
  1547. strip_tags: false
  1548. trim: false
  1549. preserve_tags: ''
  1550. html: false
  1551. element_type: ''
  1552. element_class: ''
  1553. element_label_type: ''
  1554. element_label_class: ''
  1555. element_label_colon: true
  1556. element_wrapper_type: ''
  1557. element_wrapper_class: ''
  1558. element_default_classes: true
  1559. empty: ''
  1560. hide_empty: false
  1561. empty_zero: false
  1562. hide_alter_empty: true
  1563. destination: true
  1564. plugin_id: entity_operations
  1565. field_son:
  1566. id: field_son
  1567. table: node__field_son
  1568. field: field_son
  1569. relationship: none
  1570. group_type: group
  1571. admin_label: ''
  1572. label: Son
  1573. exclude: false
  1574. alter:
  1575. alter_text: false
  1576. text: ''
  1577. make_link: false
  1578. path: ''
  1579. absolute: false
  1580. external: false
  1581. replace_spaces: false
  1582. path_case: none
  1583. trim_whitespace: false
  1584. alt: ''
  1585. rel: ''
  1586. link_class: ''
  1587. prefix: ''
  1588. suffix: ''
  1589. target: ''
  1590. nl2br: false
  1591. max_length: 0
  1592. word_boundary: true
  1593. ellipsis: true
  1594. more_link: false
  1595. more_link_text: ''
  1596. more_link_path: ''
  1597. strip_tags: false
  1598. trim: false
  1599. preserve_tags: ''
  1600. html: false
  1601. element_type: ''
  1602. element_class: ''
  1603. element_label_type: ''
  1604. element_label_class: ''
  1605. element_label_colon: true
  1606. element_wrapper_type: ''
  1607. element_wrapper_class: ''
  1608. element_default_classes: true
  1609. empty: ''
  1610. hide_empty: false
  1611. empty_zero: false
  1612. hide_alter_empty: true
  1613. click_sort_column: target_id
  1614. type: audiofield_audioplayer
  1615. settings:
  1616. audio_player: default_mp3_player
  1617. audio_player_jplayer_theme: none
  1618. audio_player_wavesurfer_combine_files: 0
  1619. audio_player_wordpress_combine_files: 0
  1620. audio_player_wordpress_animation: 0
  1621. audio_player_soundmanager_theme: default
  1622. audio_player_initial_volume: '8'
  1623. audio_player_autoplay: 0
  1624. download_link: 0
  1625. group_column: ''
  1626. group_columns: { }
  1627. group_rows: true
  1628. delta_limit: 0
  1629. delta_offset: 0
  1630. delta_reversed: false
  1631. delta_first_last: false
  1632. multi_type: separator
  1633. separator: ', '
  1634. field_api_classes: false
  1635. plugin_id: field
  1636. term_node_tid:
  1637. id: term_node_tid
  1638. table: node_field_data
  1639. field: term_node_tid
  1640. relationship: none
  1641. group_type: group
  1642. admin_label: ''
  1643. label: Entrées
  1644. exclude: false
  1645. alter:
  1646. alter_text: false
  1647. text: ''
  1648. make_link: false
  1649. path: ''
  1650. absolute: false
  1651. external: false
  1652. replace_spaces: false
  1653. path_case: none
  1654. trim_whitespace: false
  1655. alt: ''
  1656. rel: ''
  1657. link_class: ''
  1658. prefix: ''
  1659. suffix: ''
  1660. target: ''
  1661. nl2br: false
  1662. max_length: 0
  1663. word_boundary: true
  1664. ellipsis: true
  1665. more_link: false
  1666. more_link_text: ''
  1667. more_link_path: ''
  1668. strip_tags: false
  1669. trim: false
  1670. preserve_tags: ''
  1671. html: false
  1672. element_type: ''
  1673. element_class: ''
  1674. element_label_type: ''
  1675. element_label_class: ''
  1676. element_label_colon: true
  1677. element_wrapper_type: ''
  1678. element_wrapper_class: ''
  1679. element_default_classes: true
  1680. empty: ''
  1681. hide_empty: false
  1682. empty_zero: false
  1683. hide_alter_empty: true
  1684. type: ul
  1685. separator: ', '
  1686. link_to_taxonomy: false
  1687. limit: true
  1688. vids:
  1689. entrees: entrees
  1690. collectionneurs: '0'
  1691. genres: '0'
  1692. langues: '0'
  1693. locuteurs: '0'
  1694. page_type: '0'
  1695. entity_type: node
  1696. plugin_id: taxonomy_index_tid
  1697. name:
  1698. id: name
  1699. table: users_field_data
  1700. field: name
  1701. relationship: uid
  1702. label: Author
  1703. exclude: false
  1704. alter:
  1705. alter_text: false
  1706. element_class: ''
  1707. element_default_classes: true
  1708. empty: ''
  1709. hide_empty: false
  1710. empty_zero: false
  1711. hide_alter_empty: true
  1712. plugin_id: field
  1713. type: user_name
  1714. entity_type: user
  1715. entity_field: name
  1716. changed:
  1717. id: changed
  1718. table: node_field_data
  1719. field: changed
  1720. label: Updated
  1721. exclude: false
  1722. alter:
  1723. alter_text: false
  1724. element_class: ''
  1725. element_default_classes: true
  1726. empty: ''
  1727. hide_empty: false
  1728. empty_zero: false
  1729. hide_alter_empty: true
  1730. type: timestamp
  1731. settings:
  1732. date_format: short
  1733. custom_date_format: ''
  1734. timezone: ''
  1735. plugin_id: field
  1736. entity_type: node
  1737. entity_field: changed
  1738. status:
  1739. id: status
  1740. table: node_field_data
  1741. field: status
  1742. relationship: none
  1743. group_type: group
  1744. admin_label: ''
  1745. label: Status
  1746. exclude: true
  1747. alter:
  1748. alter_text: false
  1749. text: ''
  1750. make_link: false
  1751. path: ''
  1752. absolute: false
  1753. external: false
  1754. replace_spaces: false
  1755. path_case: none
  1756. trim_whitespace: false
  1757. alt: ''
  1758. rel: ''
  1759. link_class: ''
  1760. prefix: ''
  1761. suffix: ''
  1762. target: ''
  1763. nl2br: false
  1764. max_length: 0
  1765. word_boundary: true
  1766. ellipsis: true
  1767. more_link: false
  1768. more_link_text: ''
  1769. more_link_path: ''
  1770. strip_tags: false
  1771. trim: false
  1772. preserve_tags: ''
  1773. html: false
  1774. element_type: ''
  1775. element_class: ''
  1776. element_label_type: ''
  1777. element_label_class: ''
  1778. element_label_colon: true
  1779. element_wrapper_type: ''
  1780. element_wrapper_class: ''
  1781. element_default_classes: true
  1782. empty: ''
  1783. hide_empty: false
  1784. empty_zero: false
  1785. hide_alter_empty: true
  1786. click_sort_column: value
  1787. type: boolean
  1788. settings:
  1789. format: custom
  1790. format_custom_true: Published
  1791. format_custom_false: Unpublished
  1792. group_column: value
  1793. group_columns: { }
  1794. group_rows: true
  1795. delta_limit: 0
  1796. delta_offset: 0
  1797. delta_reversed: false
  1798. delta_first_last: false
  1799. multi_type: separator
  1800. separator: ', '
  1801. field_api_classes: false
  1802. plugin_id: field
  1803. entity_type: node
  1804. entity_field: status
  1805. field_afficher_en_page_d_acceuil:
  1806. id: field_afficher_en_page_d_acceuil
  1807. table: node__field_afficher_en_page_d_acceuil
  1808. field: field_afficher_en_page_d_acceuil
  1809. relationship: none
  1810. group_type: group
  1811. admin_label: ''
  1812. label: 'Afficher en page d''acceuil'
  1813. exclude: false
  1814. alter:
  1815. alter_text: false
  1816. text: ''
  1817. make_link: false
  1818. path: ''
  1819. absolute: false
  1820. external: false
  1821. replace_spaces: false
  1822. path_case: none
  1823. trim_whitespace: false
  1824. alt: ''
  1825. rel: ''
  1826. link_class: ''
  1827. prefix: ''
  1828. suffix: ''
  1829. target: ''
  1830. nl2br: false
  1831. max_length: 0
  1832. word_boundary: true
  1833. ellipsis: true
  1834. more_link: false
  1835. more_link_text: ''
  1836. more_link_path: ''
  1837. strip_tags: false
  1838. trim: false
  1839. preserve_tags: ''
  1840. html: false
  1841. element_type: ''
  1842. element_class: ''
  1843. element_label_type: ''
  1844. element_label_class: ''
  1845. element_label_colon: true
  1846. element_wrapper_type: ''
  1847. element_wrapper_class: ''
  1848. element_default_classes: true
  1849. empty: ''
  1850. hide_empty: false
  1851. empty_zero: false
  1852. hide_alter_empty: true
  1853. click_sort_column: value
  1854. type: boolean
  1855. settings:
  1856. format: yes-no
  1857. format_custom_true: ''
  1858. format_custom_false: ''
  1859. group_column: value
  1860. group_columns: { }
  1861. group_rows: true
  1862. delta_limit: 0
  1863. delta_offset: 0
  1864. delta_reversed: false
  1865. delta_first_last: false
  1866. multi_type: separator
  1867. separator: ', '
  1868. field_api_classes: false
  1869. plugin_id: field
  1870. title: Production
  1871. display_plugin: page
  1872. display_title: Production
  1873. id: page_1
  1874. position: 2
  1875. cache_metadata:
  1876. contexts:
  1877. - 'languages:language_content'
  1878. - 'languages:language_interface'
  1879. - url
  1880. - url.query_args
  1881. - user
  1882. - 'user.node_grants:view'
  1883. - user.roles
  1884. max-age: -1
  1885. tags:
  1886. - 'config:field.storage.node.field_afficher_en_page_d_acceuil'
  1887. - 'config:field.storage.node.field_page_type'
  1888. - 'config:field.storage.node.field_son'
  1889. - 'config:field.storage.node.field_view_mode'
  1890. - 'config:field.storage.node.field_visuel'
  1891. - 'config:field.storage.node.field_workflow_generic'
  1892. page_2:
  1893. display_options:
  1894. path: admin/content/collection
  1895. menu:
  1896. type: tab
  1897. title: Collection
  1898. description: ''
  1899. expanded: false
  1900. parent: 'menu_link_content:8b5fed48-c008-4041-9bda-06f997582175'
  1901. weight: -99
  1902. context: '0'
  1903. menu_name: admin
  1904. tab_options:
  1905. type: tab
  1906. title: Corpus
  1907. description: 'Find and manage content'
  1908. weight: -10
  1909. display_extenders: { }
  1910. display_description: ''
  1911. filters:
  1912. field_workflow_value:
  1913. id: field_workflow_value
  1914. table: node__field_workflow
  1915. field: field_workflow_value
  1916. relationship: none
  1917. group_type: group
  1918. admin_label: ''
  1919. operator: or
  1920. value: { }
  1921. group: 1
  1922. exposed: true
  1923. expose:
  1924. operator_id: field_workflow_value_op
  1925. label: Workflow
  1926. description: ''
  1927. use_operator: false
  1928. operator: field_workflow_value_op
  1929. identifier: field_workflow_value
  1930. required: false
  1931. remember: false
  1932. multiple: false
  1933. remember_roles:
  1934. authenticated: authenticated
  1935. anonymous: '0'
  1936. collectionneur: '0'
  1937. admin: '0'
  1938. root: '0'
  1939. invite: '0'
  1940. reduce: false
  1941. is_grouped: false
  1942. group_info:
  1943. label: ''
  1944. description: ''
  1945. identifier: ''
  1946. optional: true
  1947. widget: select
  1948. multiple: false
  1949. remember: false
  1950. default_group: All
  1951. default_group_multiple: { }
  1952. group_items: { }
  1953. reduce_duplicates: false
  1954. plugin_id: workflow_state
  1955. type:
  1956. id: type
  1957. table: node_field_data
  1958. field: type
  1959. relationship: none
  1960. group_type: group
  1961. admin_label: ''
  1962. operator: in
  1963. value:
  1964. enregistrement: enregistrement
  1965. group: 1
  1966. exposed: false
  1967. expose:
  1968. operator_id: type_op
  1969. label: 'Content type'
  1970. description: ''
  1971. use_operator: false
  1972. operator: type_op
  1973. identifier: type
  1974. required: false
  1975. remember: false
  1976. multiple: false
  1977. remember_roles:
  1978. authenticated: authenticated
  1979. anonymous: '0'
  1980. administrator: '0'
  1981. reduce: false
  1982. is_grouped: false
  1983. group_info:
  1984. label: ''
  1985. description: ''
  1986. identifier: ''
  1987. optional: true
  1988. widget: select
  1989. multiple: false
  1990. remember: false
  1991. default_group: All
  1992. default_group_multiple: { }
  1993. group_items: { }
  1994. plugin_id: bundle
  1995. entity_type: node
  1996. entity_field: type
  1997. title:
  1998. id: title
  1999. table: node_field_data
  2000. field: title
  2001. relationship: none
  2002. group_type: group
  2003. admin_label: ''
  2004. operator: contains
  2005. value: ''
  2006. group: 1
  2007. exposed: true
  2008. expose:
  2009. operator_id: title_op
  2010. label: Title
  2011. description: ''
  2012. use_operator: false
  2013. operator: title_op
  2014. identifier: title
  2015. required: false
  2016. remember: false
  2017. multiple: false
  2018. remember_roles:
  2019. authenticated: authenticated
  2020. anonymous: '0'
  2021. administrator: '0'
  2022. placeholder: ''
  2023. is_grouped: false
  2024. group_info:
  2025. label: ''
  2026. description: ''
  2027. identifier: ''
  2028. optional: true
  2029. widget: select
  2030. multiple: false
  2031. remember: false
  2032. default_group: All
  2033. default_group_multiple: { }
  2034. group_items: { }
  2035. plugin_id: string
  2036. entity_type: node
  2037. entity_field: title
  2038. body_value:
  2039. id: body_value
  2040. table: node__body
  2041. field: body_value
  2042. relationship: none
  2043. group_type: group
  2044. admin_label: ''
  2045. operator: 'not empty'
  2046. value: ''
  2047. group: 1
  2048. exposed: true
  2049. expose:
  2050. operator_id: body_value_op
  2051. label: Article
  2052. description: ''
  2053. use_operator: true
  2054. operator: body_value_op
  2055. identifier: body_value
  2056. required: false
  2057. remember: false
  2058. multiple: false
  2059. remember_roles:
  2060. authenticated: authenticated
  2061. anonymous: '0'
  2062. collectionneur: '0'
  2063. admin: '0'
  2064. root: '0'
  2065. invite: '0'
  2066. placeholder: ''
  2067. is_grouped: true
  2068. group_info:
  2069. label: Article
  2070. description: ''
  2071. identifier: body_value
  2072. optional: true
  2073. widget: radios
  2074. multiple: false
  2075. remember: false
  2076. default_group: All
  2077. default_group_multiple: { }
  2078. group_items:
  2079. 1:
  2080. title: renseigné
  2081. operator: 'not empty'
  2082. value: ''
  2083. 2:
  2084. title: vide
  2085. operator: empty
  2086. value: ''
  2087. plugin_id: string
  2088. field_entrees_target_id:
  2089. id: field_entrees_target_id
  2090. table: node__field_entrees
  2091. field: field_entrees_target_id
  2092. relationship: none
  2093. group_type: group
  2094. admin_label: ''
  2095. operator: or
  2096. value: { }
  2097. group: 1
  2098. exposed: true
  2099. expose:
  2100. operator_id: field_entrees_target_id_op
  2101. label: Entrée(s)
  2102. description: ''
  2103. use_operator: false
  2104. operator: field_entrees_target_id_op
  2105. identifier: field_entrees_target_id
  2106. required: false
  2107. remember: false
  2108. multiple: false
  2109. remember_roles:
  2110. authenticated: authenticated
  2111. anonymous: '0'
  2112. collectionneur: '0'
  2113. admin: '0'
  2114. root: '0'
  2115. invite: '0'
  2116. reduce: false
  2117. is_grouped: false
  2118. group_info:
  2119. label: ''
  2120. description: ''
  2121. identifier: ''
  2122. optional: true
  2123. widget: select
  2124. multiple: false
  2125. remember: false
  2126. default_group: All
  2127. default_group_multiple: { }
  2128. group_items: { }
  2129. reduce_duplicates: false
  2130. type: select
  2131. limit: true
  2132. vid: entrees
  2133. hierarchy: true
  2134. error_message: true
  2135. plugin_id: taxonomy_index_tid
  2136. langcode:
  2137. id: langcode
  2138. table: node_field_data
  2139. field: langcode
  2140. relationship: none
  2141. group_type: group
  2142. admin_label: ''
  2143. operator: in
  2144. value:
  2145. '***LANGUAGE_language_interface***': '***LANGUAGE_language_interface***'
  2146. und: und
  2147. group: 1
  2148. exposed: false
  2149. expose:
  2150. operator_id: ''
  2151. label: ''
  2152. description: ''
  2153. use_operator: false
  2154. operator: ''
  2155. identifier: ''
  2156. required: false
  2157. remember: false
  2158. multiple: false
  2159. remember_roles:
  2160. authenticated: authenticated
  2161. reduce: false
  2162. is_grouped: false
  2163. group_info:
  2164. label: ''
  2165. description: ''
  2166. identifier: ''
  2167. optional: true
  2168. widget: select
  2169. multiple: false
  2170. remember: false
  2171. default_group: All
  2172. default_group_multiple: { }
  2173. group_items: { }
  2174. entity_type: node
  2175. entity_field: langcode
  2176. plugin_id: language
  2177. field_genres_target_id:
  2178. id: field_genres_target_id
  2179. table: node__field_genres
  2180. field: field_genres_target_id
  2181. relationship: none
  2182. group_type: group
  2183. admin_label: ''
  2184. operator: or
  2185. value: { }
  2186. group: 1
  2187. exposed: true
  2188. expose:
  2189. operator_id: field_genres_target_id_op
  2190. label: 'Genre(s) (field_genres)'
  2191. description: ''
  2192. use_operator: false
  2193. operator: field_genres_target_id_op
  2194. identifier: field_genres_target_id
  2195. required: false
  2196. remember: false
  2197. multiple: false
  2198. remember_roles:
  2199. authenticated: authenticated
  2200. anonymous: '0'
  2201. collectionneur: '0'
  2202. admin: '0'
  2203. root: '0'
  2204. invite: '0'
  2205. user: '0'
  2206. reduce: false
  2207. is_grouped: false
  2208. group_info:
  2209. label: ''
  2210. description: ''
  2211. identifier: ''
  2212. optional: true
  2213. widget: select
  2214. multiple: false
  2215. remember: false
  2216. default_group: All
  2217. default_group_multiple: { }
  2218. group_items: { }
  2219. reduce_duplicates: false
  2220. type: textfield
  2221. limit: true
  2222. vid: genres
  2223. hierarchy: false
  2224. error_message: true
  2225. plugin_id: taxonomy_index_tid
  2226. field_langues_target_id:
  2227. id: field_langues_target_id
  2228. table: node__field_langues
  2229. field: field_langues_target_id
  2230. relationship: none
  2231. group_type: group
  2232. admin_label: ''
  2233. operator: or
  2234. value: { }
  2235. group: 1
  2236. exposed: true
  2237. expose:
  2238. operator_id: field_langues_target_id_op
  2239. label: 'Langue(s) (field_langues)'
  2240. description: ''
  2241. use_operator: false
  2242. operator: field_langues_target_id_op
  2243. identifier: field_langues_target_id
  2244. required: false
  2245. remember: false
  2246. multiple: false
  2247. remember_roles:
  2248. authenticated: authenticated
  2249. anonymous: '0'
  2250. collectionneur: '0'
  2251. admin: '0'
  2252. root: '0'
  2253. invite: '0'
  2254. user: '0'
  2255. reduce: false
  2256. is_grouped: false
  2257. group_info:
  2258. label: ''
  2259. description: ''
  2260. identifier: ''
  2261. optional: true
  2262. widget: select
  2263. multiple: false
  2264. remember: false
  2265. default_group: All
  2266. default_group_multiple: { }
  2267. group_items: { }
  2268. reduce_duplicates: false
  2269. type: textfield
  2270. limit: true
  2271. vid: langues
  2272. hierarchy: false
  2273. error_message: true
  2274. plugin_id: taxonomy_index_tid
  2275. defaults:
  2276. filters: false
  2277. filter_groups: false
  2278. title: false
  2279. fields: false
  2280. filter_groups:
  2281. operator: AND
  2282. groups:
  2283. 1: AND
  2284. title: Collection
  2285. fields:
  2286. status:
  2287. id: status
  2288. table: node_field_data
  2289. field: status
  2290. relationship: none
  2291. group_type: group
  2292. admin_label: ''
  2293. label: Status
  2294. exclude: true
  2295. alter:
  2296. alter_text: false
  2297. text: ''
  2298. make_link: false
  2299. path: ''
  2300. absolute: false
  2301. external: false
  2302. replace_spaces: false
  2303. path_case: none
  2304. trim_whitespace: false
  2305. alt: ''
  2306. rel: ''
  2307. link_class: ''
  2308. prefix: ''
  2309. suffix: ''
  2310. target: ''
  2311. nl2br: false
  2312. max_length: 0
  2313. word_boundary: true
  2314. ellipsis: true
  2315. more_link: false
  2316. more_link_text: ''
  2317. more_link_path: ''
  2318. strip_tags: false
  2319. trim: false
  2320. preserve_tags: ''
  2321. html: false
  2322. element_type: ''
  2323. element_class: ''
  2324. element_label_type: ''
  2325. element_label_class: ''
  2326. element_label_colon: true
  2327. element_wrapper_type: ''
  2328. element_wrapper_class: ''
  2329. element_default_classes: true
  2330. empty: ''
  2331. hide_empty: false
  2332. empty_zero: false
  2333. hide_alter_empty: true
  2334. click_sort_column: value
  2335. type: boolean
  2336. settings:
  2337. format: custom
  2338. format_custom_true: Published
  2339. format_custom_false: Unpublished
  2340. group_column: value
  2341. group_columns: { }
  2342. group_rows: true
  2343. delta_limit: 0
  2344. delta_offset: 0
  2345. delta_reversed: false
  2346. delta_first_last: false
  2347. multi_type: separator
  2348. separator: ', '
  2349. field_api_classes: false
  2350. plugin_id: field
  2351. entity_type: node
  2352. entity_field: status
  2353. title:
  2354. id: title
  2355. table: node_field_data
  2356. field: title
  2357. relationship: none
  2358. group_type: group
  2359. admin_label: ''
  2360. label: Title
  2361. exclude: false
  2362. alter:
  2363. alter_text: false
  2364. text: '<h3>{{ title }}</h3>'
  2365. make_link: false
  2366. path: ''
  2367. absolute: false
  2368. external: false
  2369. replace_spaces: false
  2370. path_case: none
  2371. trim_whitespace: false
  2372. alt: ''
  2373. rel: ''
  2374. link_class: ''
  2375. prefix: ''
  2376. suffix: ''
  2377. target: ''
  2378. nl2br: false
  2379. max_length: 0
  2380. word_boundary: true
  2381. ellipsis: true
  2382. more_link: false
  2383. more_link_text: ''
  2384. more_link_path: ''
  2385. strip_tags: false
  2386. trim: false
  2387. preserve_tags: ''
  2388. html: false
  2389. element_type: ''
  2390. element_class: ''
  2391. element_label_type: ''
  2392. element_label_class: ''
  2393. element_label_colon: true
  2394. element_wrapper_type: ''
  2395. element_wrapper_class: ''
  2396. element_default_classes: true
  2397. empty: ''
  2398. hide_empty: false
  2399. empty_zero: false
  2400. hide_alter_empty: true
  2401. click_sort_column: value
  2402. type: string
  2403. settings:
  2404. link_to_entity: true
  2405. group_column: value
  2406. group_columns: { }
  2407. group_rows: true
  2408. delta_limit: 0
  2409. delta_offset: 0
  2410. delta_reversed: false
  2411. delta_first_last: false
  2412. multi_type: separator
  2413. separator: ', '
  2414. field_api_classes: false
  2415. entity_type: node
  2416. entity_field: title
  2417. plugin_id: field
  2418. field_workflow:
  2419. id: field_workflow
  2420. table: node__field_workflow
  2421. field: field_workflow
  2422. relationship: none
  2423. group_type: group
  2424. admin_label: ''
  2425. label: Workflow
  2426. exclude: false
  2427. alter:
  2428. alter_text: false
  2429. text: ''
  2430. make_link: false
  2431. path: ''
  2432. absolute: false
  2433. external: false
  2434. replace_spaces: false
  2435. path_case: none
  2436. trim_whitespace: false
  2437. alt: ''
  2438. rel: ''
  2439. link_class: ''
  2440. prefix: ''
  2441. suffix: ''
  2442. target: ''
  2443. nl2br: false
  2444. max_length: 0
  2445. word_boundary: true
  2446. ellipsis: true
  2447. more_link: false
  2448. more_link_text: ''
  2449. more_link_path: ''
  2450. strip_tags: false
  2451. trim: false
  2452. preserve_tags: ''
  2453. html: false
  2454. element_type: ''
  2455. element_class: ''
  2456. element_label_type: ''
  2457. element_label_class: ''
  2458. element_label_colon: true
  2459. element_wrapper_type: ''
  2460. element_wrapper_class: ''
  2461. element_default_classes: true
  2462. empty: ''
  2463. hide_empty: false
  2464. empty_zero: false
  2465. hide_alter_empty: true
  2466. click_sort_column: value
  2467. type: list_default
  2468. settings: { }
  2469. group_column: value
  2470. group_columns: { }
  2471. group_rows: true
  2472. delta_limit: 0
  2473. delta_offset: 0
  2474. delta_reversed: false
  2475. delta_first_last: false
  2476. multi_type: separator
  2477. separator: ', '
  2478. field_api_classes: false
  2479. plugin_id: field
  2480. operations:
  2481. id: operations
  2482. table: node
  2483. field: operations
  2484. relationship: none
  2485. group_type: group
  2486. admin_label: ''
  2487. label: Operations
  2488. exclude: false
  2489. alter:
  2490. alter_text: false
  2491. text: ''
  2492. make_link: false
  2493. path: ''
  2494. absolute: false
  2495. external: false
  2496. replace_spaces: false
  2497. path_case: none
  2498. trim_whitespace: false
  2499. alt: ''
  2500. rel: ''
  2501. link_class: ''
  2502. prefix: ''
  2503. suffix: ''
  2504. target: ''
  2505. nl2br: false
  2506. max_length: 0
  2507. word_boundary: true
  2508. ellipsis: true
  2509. more_link: false
  2510. more_link_text: ''
  2511. more_link_path: ''
  2512. strip_tags: false
  2513. trim: false
  2514. preserve_tags: ''
  2515. html: false
  2516. element_type: ''
  2517. element_class: ''
  2518. element_label_type: ''
  2519. element_label_class: ''
  2520. element_label_colon: true
  2521. element_wrapper_type: ''
  2522. element_wrapper_class: ''
  2523. element_default_classes: true
  2524. empty: ''
  2525. hide_empty: false
  2526. empty_zero: false
  2527. hide_alter_empty: true
  2528. destination: true
  2529. plugin_id: entity_operations
  2530. field_son:
  2531. id: field_son
  2532. table: node__field_son
  2533. field: field_son
  2534. relationship: none
  2535. group_type: group
  2536. admin_label: ''
  2537. label: Son
  2538. exclude: false
  2539. alter:
  2540. alter_text: false
  2541. text: ''
  2542. make_link: false
  2543. path: ''
  2544. absolute: false
  2545. external: false
  2546. replace_spaces: false
  2547. path_case: none
  2548. trim_whitespace: false
  2549. alt: ''
  2550. rel: ''
  2551. link_class: ''
  2552. prefix: ''
  2553. suffix: ''
  2554. target: ''
  2555. nl2br: false
  2556. max_length: 0
  2557. word_boundary: true
  2558. ellipsis: true
  2559. more_link: false
  2560. more_link_text: ''
  2561. more_link_path: ''
  2562. strip_tags: false
  2563. trim: false
  2564. preserve_tags: ''
  2565. html: false
  2566. element_type: ''
  2567. element_class: ''
  2568. element_label_type: ''
  2569. element_label_class: ''
  2570. element_label_colon: true
  2571. element_wrapper_type: ''
  2572. element_wrapper_class: ''
  2573. element_default_classes: true
  2574. empty: ''
  2575. hide_empty: false
  2576. empty_zero: false
  2577. hide_alter_empty: true
  2578. click_sort_column: target_id
  2579. type: audiofield_audioplayer
  2580. settings:
  2581. audio_player: default_mp3_player
  2582. audio_player_jplayer_theme: none
  2583. audio_player_wavesurfer_combine_files: 0
  2584. audio_player_wordpress_combine_files: 0
  2585. audio_player_wordpress_animation: 0
  2586. audio_player_soundmanager_theme: default
  2587. audio_player_initial_volume: '8'
  2588. audio_player_autoplay: 0
  2589. audio_player_lazyload: 1
  2590. download_button: 0
  2591. download_link: 0
  2592. group_column: ''
  2593. group_columns: { }
  2594. group_rows: true
  2595. delta_limit: 0
  2596. delta_offset: 0
  2597. delta_reversed: false
  2598. delta_first_last: false
  2599. multi_type: separator
  2600. separator: ', '
  2601. field_api_classes: false
  2602. plugin_id: field
  2603. field_nbr_locuteurs:
  2604. id: field_nbr_locuteurs
  2605. table: node__field_nbr_locuteurs
  2606. field: field_nbr_locuteurs
  2607. relationship: none
  2608. group_type: group
  2609. admin_label: ''
  2610. label: Locuteur(s)
  2611. exclude: false
  2612. alter:
  2613. alter_text: false
  2614. text: ''
  2615. make_link: false
  2616. path: ''
  2617. absolute: false
  2618. external: false
  2619. replace_spaces: false
  2620. path_case: none
  2621. trim_whitespace: false
  2622. alt: ''
  2623. rel: ''
  2624. link_class: ''
  2625. prefix: ''
  2626. suffix: ''
  2627. target: ''
  2628. nl2br: false
  2629. max_length: 0
  2630. word_boundary: true
  2631. ellipsis: true
  2632. more_link: false
  2633. more_link_text: ''
  2634. more_link_path: ''
  2635. strip_tags: false
  2636. trim: false
  2637. preserve_tags: ''
  2638. html: false
  2639. element_type: ''
  2640. element_class: ''
  2641. element_label_type: ''
  2642. element_label_class: ''
  2643. element_label_colon: true
  2644. element_wrapper_type: ''
  2645. element_wrapper_class: ''
  2646. element_default_classes: true
  2647. empty: ''
  2648. hide_empty: false
  2649. empty_zero: false
  2650. hide_alter_empty: true
  2651. click_sort_column: value
  2652. type: number_integer
  2653. settings:
  2654. thousand_separator: ''
  2655. prefix_suffix: true
  2656. group_column: value
  2657. group_columns: { }
  2658. group_rows: true
  2659. delta_limit: 0
  2660. delta_offset: 0
  2661. delta_reversed: false
  2662. delta_first_last: false
  2663. multi_type: separator
  2664. separator: ', '
  2665. field_api_classes: false
  2666. plugin_id: field
  2667. field_description:
  2668. id: field_description
  2669. table: node__field_description
  2670. field: field_description
  2671. relationship: none
  2672. group_type: group
  2673. admin_label: ''
  2674. label: Description
  2675. exclude: false
  2676. alter:
  2677. alter_text: false
  2678. text: ''
  2679. make_link: false
  2680. path: ''
  2681. absolute: false
  2682. external: false
  2683. replace_spaces: false
  2684. path_case: none
  2685. trim_whitespace: false
  2686. alt: ''
  2687. rel: ''
  2688. link_class: ''
  2689. prefix: ''
  2690. suffix: ''
  2691. target: ''
  2692. nl2br: false
  2693. max_length: 0
  2694. word_boundary: true
  2695. ellipsis: true
  2696. more_link: false
  2697. more_link_text: ''
  2698. more_link_path: ''
  2699. strip_tags: false
  2700. trim: false
  2701. preserve_tags: ''
  2702. html: false
  2703. element_type: ''
  2704. element_class: ''
  2705. element_label_type: ''
  2706. element_label_class: ''
  2707. element_label_colon: true
  2708. element_wrapper_type: ''
  2709. element_wrapper_class: ''
  2710. element_default_classes: true
  2711. empty: ''
  2712. hide_empty: false
  2713. empty_zero: false
  2714. hide_alter_empty: true
  2715. click_sort_column: value
  2716. type: text_default
  2717. settings: { }
  2718. group_column: value
  2719. group_columns: { }
  2720. group_rows: true
  2721. delta_limit: 0
  2722. delta_offset: 0
  2723. delta_reversed: false
  2724. delta_first_last: false
  2725. multi_type: separator
  2726. separator: ', '
  2727. field_api_classes: false
  2728. plugin_id: field
  2729. body:
  2730. id: body
  2731. table: node__body
  2732. field: body
  2733. relationship: none
  2734. group_type: group
  2735. admin_label: ''
  2736. label: Article
  2737. exclude: false
  2738. alter:
  2739. alter_text: false
  2740. text: ''
  2741. make_link: false
  2742. path: ''
  2743. absolute: false
  2744. external: false
  2745. replace_spaces: false
  2746. path_case: none
  2747. trim_whitespace: false
  2748. alt: ''
  2749. rel: ''
  2750. link_class: ''
  2751. prefix: ''
  2752. suffix: ''
  2753. target: ''
  2754. nl2br: false
  2755. max_length: 0
  2756. word_boundary: true
  2757. ellipsis: true
  2758. more_link: false
  2759. more_link_text: ''
  2760. more_link_path: ''
  2761. strip_tags: false
  2762. trim: false
  2763. preserve_tags: ''
  2764. html: false
  2765. element_type: ''
  2766. element_class: ''
  2767. element_label_type: ''
  2768. element_label_class: ''
  2769. element_label_colon: true
  2770. element_wrapper_type: ''
  2771. element_wrapper_class: ''
  2772. element_default_classes: true
  2773. empty: ''
  2774. hide_empty: false
  2775. empty_zero: false
  2776. hide_alter_empty: true
  2777. click_sort_column: value
  2778. type: text_summary_or_trimmed
  2779. settings:
  2780. trim_length: 50
  2781. group_column: value
  2782. group_columns: { }
  2783. group_rows: true
  2784. delta_limit: 0
  2785. delta_offset: 0
  2786. delta_reversed: false
  2787. delta_first_last: false
  2788. multi_type: separator
  2789. separator: ', '
  2790. field_api_classes: false
  2791. plugin_id: field
  2792. field_entrees:
  2793. id: field_entrees
  2794. table: node__field_entrees
  2795. field: field_entrees
  2796. relationship: none
  2797. group_type: group
  2798. admin_label: ''
  2799. label: Entrée(s)
  2800. exclude: false
  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: target_id
  2841. type: entity_reference_label
  2842. settings:
  2843. link: true
  2844. group_column: target_id
  2845. group_columns: { }
  2846. group_rows: true
  2847. delta_limit: 0
  2848. delta_offset: 0
  2849. delta_reversed: false
  2850. delta_first_last: false
  2851. multi_type: separator
  2852. separator: '<br/>'
  2853. field_api_classes: false
  2854. plugin_id: field
  2855. field_genres:
  2856. id: field_genres
  2857. table: node__field_genres
  2858. field: field_genres
  2859. relationship: none
  2860. group_type: group
  2861. admin_label: ''
  2862. label: Genre(s)
  2863. exclude: false
  2864. alter:
  2865. alter_text: false
  2866. text: ''
  2867. make_link: false
  2868. path: ''
  2869. absolute: false
  2870. external: false
  2871. replace_spaces: false
  2872. path_case: none
  2873. trim_whitespace: false
  2874. alt: ''
  2875. rel: ''
  2876. link_class: ''
  2877. prefix: ''
  2878. suffix: ''
  2879. target: ''
  2880. nl2br: false
  2881. max_length: 0
  2882. word_boundary: true
  2883. ellipsis: true
  2884. more_link: false
  2885. more_link_text: ''
  2886. more_link_path: ''
  2887. strip_tags: false
  2888. trim: false
  2889. preserve_tags: ''
  2890. html: false
  2891. element_type: ''
  2892. element_class: ''
  2893. element_label_type: ''
  2894. element_label_class: ''
  2895. element_label_colon: true
  2896. element_wrapper_type: ''
  2897. element_wrapper_class: ''
  2898. element_default_classes: true
  2899. empty: ''
  2900. hide_empty: false
  2901. empty_zero: false
  2902. hide_alter_empty: true
  2903. click_sort_column: target_id
  2904. type: entity_reference_label
  2905. settings:
  2906. link: true
  2907. group_column: target_id
  2908. group_columns: { }
  2909. group_rows: true
  2910. delta_limit: 0
  2911. delta_offset: 0
  2912. delta_reversed: false
  2913. delta_first_last: false
  2914. multi_type: separator
  2915. separator: '<br/>'
  2916. field_api_classes: false
  2917. plugin_id: field
  2918. field_langues:
  2919. id: field_langues
  2920. table: node__field_langues
  2921. field: field_langues
  2922. relationship: none
  2923. group_type: group
  2924. admin_label: ''
  2925. label: Langue(s)
  2926. exclude: false
  2927. alter:
  2928. alter_text: false
  2929. text: ''
  2930. make_link: false
  2931. path: ''
  2932. absolute: false
  2933. external: false
  2934. replace_spaces: false
  2935. path_case: none
  2936. trim_whitespace: false
  2937. alt: ''
  2938. rel: ''
  2939. link_class: ''
  2940. prefix: ''
  2941. suffix: ''
  2942. target: ''
  2943. nl2br: false
  2944. max_length: 0
  2945. word_boundary: true
  2946. ellipsis: true
  2947. more_link: false
  2948. more_link_text: ''
  2949. more_link_path: ''
  2950. strip_tags: false
  2951. trim: false
  2952. preserve_tags: ''
  2953. html: false
  2954. element_type: ''
  2955. element_class: ''
  2956. element_label_type: ''
  2957. element_label_class: ''
  2958. element_label_colon: true
  2959. element_wrapper_type: ''
  2960. element_wrapper_class: ''
  2961. element_default_classes: true
  2962. empty: ''
  2963. hide_empty: false
  2964. empty_zero: false
  2965. hide_alter_empty: true
  2966. click_sort_column: target_id
  2967. type: entity_reference_label
  2968. settings:
  2969. link: true
  2970. group_column: target_id
  2971. group_columns: { }
  2972. group_rows: true
  2973. delta_limit: 0
  2974. delta_offset: 0
  2975. delta_reversed: false
  2976. delta_first_last: false
  2977. multi_type: separator
  2978. separator: '<br/>'
  2979. field_api_classes: false
  2980. plugin_id: field
  2981. name:
  2982. id: name
  2983. table: users_field_data
  2984. field: name
  2985. relationship: uid
  2986. label: Author
  2987. exclude: false
  2988. alter:
  2989. alter_text: false
  2990. element_class: ''
  2991. element_default_classes: true
  2992. empty: ''
  2993. hide_empty: false
  2994. empty_zero: false
  2995. hide_alter_empty: true
  2996. plugin_id: field
  2997. type: user_name
  2998. entity_type: user
  2999. entity_field: name
  3000. changed:
  3001. id: changed
  3002. table: node_field_data
  3003. field: changed
  3004. label: Updated
  3005. exclude: false
  3006. alter:
  3007. alter_text: false
  3008. element_class: ''
  3009. element_default_classes: true
  3010. empty: ''
  3011. hide_empty: false
  3012. empty_zero: false
  3013. hide_alter_empty: true
  3014. type: timestamp
  3015. settings:
  3016. date_format: short
  3017. custom_date_format: ''
  3018. timezone: ''
  3019. plugin_id: field
  3020. entity_type: node
  3021. entity_field: changed
  3022. field_collectionneurs:
  3023. id: field_collectionneurs
  3024. table: node__field_collectionneurs
  3025. field: field_collectionneurs
  3026. relationship: none
  3027. group_type: group
  3028. admin_label: ''
  3029. label: Collectionneur(s)
  3030. exclude: true
  3031. alter:
  3032. alter_text: false
  3033. text: ''
  3034. make_link: false
  3035. path: ''
  3036. absolute: false
  3037. external: false
  3038. replace_spaces: false
  3039. path_case: none
  3040. trim_whitespace: false
  3041. alt: ''
  3042. rel: ''
  3043. link_class: ''
  3044. prefix: ''
  3045. suffix: ''
  3046. target: ''
  3047. nl2br: false
  3048. max_length: 0
  3049. word_boundary: true
  3050. ellipsis: true
  3051. more_link: false
  3052. more_link_text: ''
  3053. more_link_path: ''
  3054. strip_tags: false
  3055. trim: false
  3056. preserve_tags: ''
  3057. html: false
  3058. element_type: ''
  3059. element_class: ''
  3060. element_label_type: ''
  3061. element_label_class: ''
  3062. element_label_colon: true
  3063. element_wrapper_type: ''
  3064. element_wrapper_class: ''
  3065. element_default_classes: true
  3066. empty: ''
  3067. hide_empty: false
  3068. empty_zero: false
  3069. hide_alter_empty: true
  3070. click_sort_column: target_id
  3071. type: entity_reference_label
  3072. settings:
  3073. link: true
  3074. group_column: target_id
  3075. group_columns: { }
  3076. group_rows: true
  3077. delta_limit: 0
  3078. delta_offset: 0
  3079. delta_reversed: false
  3080. delta_first_last: false
  3081. multi_type: separator
  3082. separator: '<br/>'
  3083. field_api_classes: false
  3084. plugin_id: field
  3085. field_locuteurs:
  3086. id: field_locuteurs
  3087. table: node__field_locuteurs
  3088. field: field_locuteurs
  3089. relationship: none
  3090. group_type: group
  3091. admin_label: ''
  3092. label: Locuteur(s)
  3093. exclude: true
  3094. alter:
  3095. alter_text: false
  3096. text: ''
  3097. make_link: false
  3098. path: ''
  3099. absolute: false
  3100. external: false
  3101. replace_spaces: false
  3102. path_case: none
  3103. trim_whitespace: false
  3104. alt: ''
  3105. rel: ''
  3106. link_class: ''
  3107. prefix: ''
  3108. suffix: ''
  3109. target: ''
  3110. nl2br: false
  3111. max_length: 0
  3112. word_boundary: true
  3113. ellipsis: true
  3114. more_link: false
  3115. more_link_text: ''
  3116. more_link_path: ''
  3117. strip_tags: false
  3118. trim: false
  3119. preserve_tags: ''
  3120. html: false
  3121. element_type: ''
  3122. element_class: ''
  3123. element_label_type: ''
  3124. element_label_class: ''
  3125. element_label_colon: true
  3126. element_wrapper_type: ''
  3127. element_wrapper_class: ''
  3128. element_default_classes: true
  3129. empty: ''
  3130. hide_empty: false
  3131. empty_zero: false
  3132. hide_alter_empty: true
  3133. click_sort_column: target_id
  3134. type: entity_reference_label
  3135. settings:
  3136. link: true
  3137. group_column: target_id
  3138. group_columns: { }
  3139. group_rows: true
  3140. delta_limit: 0
  3141. delta_offset: 0
  3142. delta_reversed: false
  3143. delta_first_last: false
  3144. multi_type: separator
  3145. separator: '<br/>'
  3146. field_api_classes: false
  3147. plugin_id: field
  3148. display_plugin: page
  3149. display_title: Collection
  3150. id: page_2
  3151. position: 1
  3152. cache_metadata:
  3153. contexts:
  3154. - 'languages:language_content'
  3155. - 'languages:language_interface'
  3156. - url
  3157. - url.query_args
  3158. - user
  3159. - 'user.node_grants:view'
  3160. - user.roles
  3161. max-age: -1
  3162. tags:
  3163. - 'config:field.storage.node.body'
  3164. - 'config:field.storage.node.field_collectionneurs'
  3165. - 'config:field.storage.node.field_description'
  3166. - 'config:field.storage.node.field_entrees'
  3167. - 'config:field.storage.node.field_genres'
  3168. - 'config:field.storage.node.field_langues'
  3169. - 'config:field.storage.node.field_locuteurs'
  3170. - 'config:field.storage.node.field_nbr_locuteurs'
  3171. - 'config:field.storage.node.field_son'
  3172. - 'config:field.storage.node.field_workflow'
  3173. page_3:
  3174. display_options:
  3175. path: admin/content/agenda
  3176. menu:
  3177. type: tab
  3178. title: Agenda
  3179. description: ''
  3180. expanded: false
  3181. parent: 'menu_link_content:8b5fed48-c008-4041-9bda-06f997582175'
  3182. weight: -97
  3183. context: '0'
  3184. menu_name: admin
  3185. tab_options:
  3186. type: normal
  3187. title: Content
  3188. description: 'Find and manage content'
  3189. menu_name: admin
  3190. weight: -10
  3191. display_extenders: { }
  3192. display_description: ''
  3193. access:
  3194. type: role
  3195. options:
  3196. role:
  3197. admin: admin
  3198. root: root
  3199. defaults:
  3200. access: false
  3201. filters: false
  3202. filter_groups: false
  3203. fields: false
  3204. title: false
  3205. filters:
  3206. status_extra:
  3207. id: status_extra
  3208. table: node_field_data
  3209. field: status_extra
  3210. operator: '='
  3211. value: false
  3212. plugin_id: node_status
  3213. group: 1
  3214. entity_type: node
  3215. field_workflow_generic_value:
  3216. id: field_workflow_generic_value
  3217. table: node__field_workflow_generic
  3218. field: field_workflow_generic_value
  3219. relationship: none
  3220. group_type: group
  3221. admin_label: ''
  3222. operator: or
  3223. value: { }
  3224. group: 1
  3225. exposed: true
  3226. expose:
  3227. operator_id: field_workflow_generic_value_op
  3228. label: Workflow
  3229. description: ''
  3230. use_operator: false
  3231. operator: field_workflow_generic_value_op
  3232. identifier: field_workflow_generic_value
  3233. required: false
  3234. remember: false
  3235. multiple: false
  3236. remember_roles:
  3237. authenticated: authenticated
  3238. anonymous: '0'
  3239. collectionneur: '0'
  3240. admin: '0'
  3241. root: '0'
  3242. invite: '0'
  3243. reduce: false
  3244. is_grouped: false
  3245. group_info:
  3246. label: ''
  3247. description: ''
  3248. identifier: ''
  3249. optional: true
  3250. widget: select
  3251. multiple: false
  3252. remember: false
  3253. default_group: All
  3254. default_group_multiple: { }
  3255. group_items: { }
  3256. reduce_duplicates: false
  3257. plugin_id: workflow_state
  3258. type:
  3259. id: type
  3260. table: node_field_data
  3261. field: type
  3262. relationship: none
  3263. group_type: group
  3264. admin_label: ''
  3265. operator: in
  3266. value:
  3267. evenement: evenement
  3268. group: 1
  3269. exposed: false
  3270. expose:
  3271. operator_id: type_op
  3272. label: 'Content type'
  3273. description: ''
  3274. use_operator: false
  3275. operator: type_op
  3276. identifier: type
  3277. required: false
  3278. remember: false
  3279. multiple: false
  3280. remember_roles:
  3281. authenticated: authenticated
  3282. anonymous: '0'
  3283. collectionneur: '0'
  3284. admin: '0'
  3285. root: '0'
  3286. invite: '0'
  3287. reduce: true
  3288. is_grouped: false
  3289. group_info:
  3290. label: ''
  3291. description: ''
  3292. identifier: ''
  3293. optional: true
  3294. widget: select
  3295. multiple: false
  3296. remember: false
  3297. default_group: All
  3298. default_group_multiple: { }
  3299. group_items: { }
  3300. plugin_id: bundle
  3301. entity_type: node
  3302. entity_field: type
  3303. title:
  3304. id: title
  3305. table: node_field_data
  3306. field: title
  3307. relationship: none
  3308. group_type: group
  3309. admin_label: ''
  3310. operator: contains
  3311. value: ''
  3312. group: 1
  3313. exposed: true
  3314. expose:
  3315. operator_id: title_op
  3316. label: Title
  3317. description: ''
  3318. use_operator: false
  3319. operator: title_op
  3320. identifier: title
  3321. required: false
  3322. remember: false
  3323. multiple: false
  3324. remember_roles:
  3325. authenticated: authenticated
  3326. anonymous: '0'
  3327. administrator: '0'
  3328. placeholder: ''
  3329. is_grouped: false
  3330. group_info:
  3331. label: ''
  3332. description: ''
  3333. identifier: ''
  3334. optional: true
  3335. widget: select
  3336. multiple: false
  3337. remember: false
  3338. default_group: All
  3339. default_group_multiple: { }
  3340. group_items: { }
  3341. plugin_id: string
  3342. entity_type: node
  3343. entity_field: title
  3344. langcode:
  3345. id: langcode
  3346. table: node_field_data
  3347. field: langcode
  3348. relationship: none
  3349. group_type: group
  3350. admin_label: ''
  3351. operator: in
  3352. value:
  3353. '***LANGUAGE_language_interface***': '***LANGUAGE_language_interface***'
  3354. und: und
  3355. zxx: zxx
  3356. group: 1
  3357. exposed: false
  3358. expose:
  3359. operator_id: ''
  3360. label: ''
  3361. description: ''
  3362. use_operator: false
  3363. operator: ''
  3364. identifier: ''
  3365. required: false
  3366. remember: false
  3367. multiple: false
  3368. remember_roles:
  3369. authenticated: authenticated
  3370. reduce: false
  3371. is_grouped: false
  3372. group_info:
  3373. label: ''
  3374. description: ''
  3375. identifier: ''
  3376. optional: true
  3377. widget: select
  3378. multiple: false
  3379. remember: false
  3380. default_group: All
  3381. default_group_multiple: { }
  3382. group_items: { }
  3383. entity_type: node
  3384. entity_field: langcode
  3385. plugin_id: language
  3386. filter_groups:
  3387. operator: AND
  3388. groups:
  3389. 1: AND
  3390. fields:
  3391. title:
  3392. id: title
  3393. table: node_field_data
  3394. field: title
  3395. label: Title
  3396. exclude: false
  3397. alter:
  3398. alter_text: false
  3399. element_class: ''
  3400. element_default_classes: true
  3401. empty: ''
  3402. hide_empty: false
  3403. empty_zero: false
  3404. hide_alter_empty: true
  3405. entity_type: node
  3406. entity_field: title
  3407. type: string
  3408. settings:
  3409. link_to_entity: true
  3410. plugin_id: field
  3411. status:
  3412. id: status
  3413. table: node_field_data
  3414. field: status
  3415. relationship: none
  3416. group_type: group
  3417. admin_label: ''
  3418. label: Status
  3419. exclude: true
  3420. alter:
  3421. alter_text: false
  3422. text: ''
  3423. make_link: false
  3424. path: ''
  3425. absolute: false
  3426. external: false
  3427. replace_spaces: false
  3428. path_case: none
  3429. trim_whitespace: false
  3430. alt: ''
  3431. rel: ''
  3432. link_class: ''
  3433. prefix: ''
  3434. suffix: ''
  3435. target: ''
  3436. nl2br: false
  3437. max_length: 0
  3438. word_boundary: true
  3439. ellipsis: true
  3440. more_link: false
  3441. more_link_text: ''
  3442. more_link_path: ''
  3443. strip_tags: false
  3444. trim: false
  3445. preserve_tags: ''
  3446. html: false
  3447. element_type: ''
  3448. element_class: ''
  3449. element_label_type: ''
  3450. element_label_class: ''
  3451. element_label_colon: true
  3452. element_wrapper_type: ''
  3453. element_wrapper_class: ''
  3454. element_default_classes: true
  3455. empty: ''
  3456. hide_empty: false
  3457. empty_zero: false
  3458. hide_alter_empty: true
  3459. click_sort_column: value
  3460. type: boolean
  3461. settings:
  3462. format: custom
  3463. format_custom_true: Published
  3464. format_custom_false: Unpublished
  3465. group_column: value
  3466. group_columns: { }
  3467. group_rows: true
  3468. delta_limit: 0
  3469. delta_offset: 0
  3470. delta_reversed: false
  3471. delta_first_last: false
  3472. multi_type: separator
  3473. separator: ', '
  3474. field_api_classes: false
  3475. plugin_id: field
  3476. entity_type: node
  3477. entity_field: status
  3478. field_workflow_generic:
  3479. id: field_workflow_generic
  3480. table: node__field_workflow_generic
  3481. field: field_workflow_generic
  3482. relationship: none
  3483. group_type: group
  3484. admin_label: ''
  3485. label: Workflow
  3486. exclude: false
  3487. alter:
  3488. alter_text: false
  3489. text: ''
  3490. make_link: false
  3491. path: ''
  3492. absolute: false
  3493. external: false
  3494. replace_spaces: false
  3495. path_case: none
  3496. trim_whitespace: false
  3497. alt: ''
  3498. rel: ''
  3499. link_class: ''
  3500. prefix: ''
  3501. suffix: ''
  3502. target: ''
  3503. nl2br: false
  3504. max_length: 0
  3505. word_boundary: true
  3506. ellipsis: true
  3507. more_link: false
  3508. more_link_text: ''
  3509. more_link_path: ''
  3510. strip_tags: false
  3511. trim: false
  3512. preserve_tags: ''
  3513. html: false
  3514. element_type: ''
  3515. element_class: ''
  3516. element_label_type: ''
  3517. element_label_class: ''
  3518. element_label_colon: true
  3519. element_wrapper_type: ''
  3520. element_wrapper_class: ''
  3521. element_default_classes: true
  3522. empty: ''
  3523. hide_empty: false
  3524. empty_zero: false
  3525. hide_alter_empty: true
  3526. click_sort_column: value
  3527. type: list_default
  3528. settings: { }
  3529. group_column: value
  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: ', '
  3538. field_api_classes: false
  3539. plugin_id: field
  3540. operations:
  3541. id: operations
  3542. table: node
  3543. field: operations
  3544. relationship: none
  3545. group_type: group
  3546. admin_label: ''
  3547. label: Operations
  3548. exclude: false
  3549. alter:
  3550. alter_text: false
  3551. text: ''
  3552. make_link: false
  3553. path: ''
  3554. absolute: false
  3555. external: false
  3556. replace_spaces: false
  3557. path_case: none
  3558. trim_whitespace: false
  3559. alt: ''
  3560. rel: ''
  3561. link_class: ''
  3562. prefix: ''
  3563. suffix: ''
  3564. target: ''
  3565. nl2br: false
  3566. max_length: 0
  3567. word_boundary: true
  3568. ellipsis: true
  3569. more_link: false
  3570. more_link_text: ''
  3571. more_link_path: ''
  3572. strip_tags: false
  3573. trim: false
  3574. preserve_tags: ''
  3575. html: false
  3576. element_type: ''
  3577. element_class: ''
  3578. element_label_type: ''
  3579. element_label_class: ''
  3580. element_label_colon: true
  3581. element_wrapper_type: ''
  3582. element_wrapper_class: ''
  3583. element_default_classes: true
  3584. empty: ''
  3585. hide_empty: false
  3586. empty_zero: false
  3587. hide_alter_empty: true
  3588. destination: true
  3589. plugin_id: entity_operations
  3590. field_date:
  3591. id: field_date
  3592. table: node__field_date
  3593. field: field_date
  3594. relationship: none
  3595. group_type: group
  3596. admin_label: ''
  3597. label: Date
  3598. exclude: false
  3599. alter:
  3600. alter_text: false
  3601. text: ''
  3602. make_link: false
  3603. path: ''
  3604. absolute: false
  3605. external: false
  3606. replace_spaces: false
  3607. path_case: none
  3608. trim_whitespace: false
  3609. alt: ''
  3610. rel: ''
  3611. link_class: ''
  3612. prefix: ''
  3613. suffix: ''
  3614. target: ''
  3615. nl2br: false
  3616. max_length: 0
  3617. word_boundary: true
  3618. ellipsis: true
  3619. more_link: false
  3620. more_link_text: ''
  3621. more_link_path: ''
  3622. strip_tags: false
  3623. trim: false
  3624. preserve_tags: ''
  3625. html: false
  3626. element_type: ''
  3627. element_class: ''
  3628. element_label_type: ''
  3629. element_label_class: ''
  3630. element_label_colon: true
  3631. element_wrapper_type: ''
  3632. element_wrapper_class: ''
  3633. element_default_classes: true
  3634. empty: ''
  3635. hide_empty: false
  3636. empty_zero: false
  3637. hide_alter_empty: true
  3638. click_sort_column: value
  3639. type: daterange_default
  3640. settings:
  3641. timezone_override: ''
  3642. format_type: medium
  3643. separator: '-'
  3644. group_column: value
  3645. group_columns: { }
  3646. group_rows: true
  3647. delta_limit: 0
  3648. delta_offset: 0
  3649. delta_reversed: false
  3650. delta_first_last: false
  3651. multi_type: separator
  3652. separator: '<br/>'
  3653. field_api_classes: false
  3654. plugin_id: field
  3655. field_page_liee:
  3656. id: field_page_liee
  3657. table: node__field_page_liee
  3658. field: field_page_liee
  3659. relationship: none
  3660. group_type: group
  3661. admin_label: ''
  3662. label: 'Page(s) liée(s)'
  3663. exclude: false
  3664. alter:
  3665. alter_text: false
  3666. text: ''
  3667. make_link: false
  3668. path: ''
  3669. absolute: false
  3670. external: false
  3671. replace_spaces: false
  3672. path_case: none
  3673. trim_whitespace: false
  3674. alt: ''
  3675. rel: ''
  3676. link_class: ''
  3677. prefix: ''
  3678. suffix: ''
  3679. target: ''
  3680. nl2br: false
  3681. max_length: 0
  3682. word_boundary: true
  3683. ellipsis: true
  3684. more_link: false
  3685. more_link_text: ''
  3686. more_link_path: ''
  3687. strip_tags: false
  3688. trim: false
  3689. preserve_tags: ''
  3690. html: false
  3691. element_type: ''
  3692. element_class: ''
  3693. element_label_type: ''
  3694. element_label_class: ''
  3695. element_label_colon: true
  3696. element_wrapper_type: ''
  3697. element_wrapper_class: ''
  3698. element_default_classes: true
  3699. empty: ''
  3700. hide_empty: false
  3701. empty_zero: false
  3702. hide_alter_empty: true
  3703. click_sort_column: target_id
  3704. type: entity_reference_label
  3705. settings:
  3706. link: true
  3707. group_column: target_id
  3708. group_columns: { }
  3709. group_rows: true
  3710. delta_limit: 0
  3711. delta_offset: 0
  3712. delta_reversed: false
  3713. delta_first_last: false
  3714. multi_type: separator
  3715. separator: '<br/>'
  3716. field_api_classes: false
  3717. plugin_id: field
  3718. name:
  3719. id: name
  3720. table: users_field_data
  3721. field: name
  3722. relationship: uid
  3723. label: Author
  3724. exclude: false
  3725. alter:
  3726. alter_text: false
  3727. element_class: ''
  3728. element_default_classes: true
  3729. empty: ''
  3730. hide_empty: false
  3731. empty_zero: false
  3732. hide_alter_empty: true
  3733. plugin_id: field
  3734. type: user_name
  3735. entity_type: user
  3736. entity_field: name
  3737. changed:
  3738. id: changed
  3739. table: node_field_data
  3740. field: changed
  3741. label: Updated
  3742. exclude: false
  3743. alter:
  3744. alter_text: false
  3745. element_class: ''
  3746. element_default_classes: true
  3747. empty: ''
  3748. hide_empty: false
  3749. empty_zero: false
  3750. hide_alter_empty: true
  3751. type: timestamp
  3752. settings:
  3753. date_format: short
  3754. custom_date_format: ''
  3755. timezone: ''
  3756. plugin_id: field
  3757. entity_type: node
  3758. entity_field: changed
  3759. title: Agenda
  3760. display_plugin: page
  3761. display_title: Agenda
  3762. id: page_3
  3763. position: 2
  3764. cache_metadata:
  3765. contexts:
  3766. - 'languages:language_content'
  3767. - 'languages:language_interface'
  3768. - url
  3769. - url.query_args
  3770. - user
  3771. - 'user.node_grants:view'
  3772. - user.roles
  3773. max-age: -1
  3774. tags:
  3775. - 'config:field.storage.node.field_date'
  3776. - 'config:field.storage.node.field_page_liee'
  3777. - 'config:field.storage.node.field_workflow_generic'
  3778. page_4:
  3779. display_options:
  3780. path: admin/content/static
  3781. menu:
  3782. type: tab
  3783. title: Static
  3784. description: ''
  3785. expanded: false
  3786. parent: 'menu_link_content:8b5fed48-c008-4041-9bda-06f997582175'
  3787. weight: -96
  3788. context: '0'
  3789. menu_name: admin
  3790. tab_options:
  3791. type: normal
  3792. title: Content
  3793. description: 'Find and manage content'
  3794. menu_name: admin
  3795. weight: -10
  3796. display_extenders: { }
  3797. display_description: ''
  3798. access:
  3799. type: role
  3800. options:
  3801. role:
  3802. admin: admin
  3803. root: root
  3804. defaults:
  3805. access: false
  3806. filters: false
  3807. filter_groups: false
  3808. fields: false
  3809. title: false
  3810. filters:
  3811. status_extra:
  3812. id: status_extra
  3813. table: node_field_data
  3814. field: status_extra
  3815. operator: '='
  3816. value: false
  3817. plugin_id: node_status
  3818. group: 1
  3819. entity_type: node
  3820. field_workflow_generic_value:
  3821. id: field_workflow_generic_value
  3822. table: node__field_workflow_generic
  3823. field: field_workflow_generic_value
  3824. relationship: none
  3825. group_type: group
  3826. admin_label: ''
  3827. operator: or
  3828. value: { }
  3829. group: 1
  3830. exposed: true
  3831. expose:
  3832. operator_id: field_workflow_generic_value_op
  3833. label: Workflow
  3834. description: ''
  3835. use_operator: false
  3836. operator: field_workflow_generic_value_op
  3837. identifier: field_workflow_generic_value
  3838. required: false
  3839. remember: false
  3840. multiple: false
  3841. remember_roles:
  3842. authenticated: authenticated
  3843. anonymous: '0'
  3844. collectionneur: '0'
  3845. admin: '0'
  3846. root: '0'
  3847. invite: '0'
  3848. reduce: false
  3849. is_grouped: false
  3850. group_info:
  3851. label: ''
  3852. description: ''
  3853. identifier: ''
  3854. optional: true
  3855. widget: select
  3856. multiple: false
  3857. remember: false
  3858. default_group: All
  3859. default_group_multiple: { }
  3860. group_items: { }
  3861. reduce_duplicates: false
  3862. plugin_id: workflow_state
  3863. title:
  3864. id: title
  3865. table: node_field_data
  3866. field: title
  3867. relationship: none
  3868. group_type: group
  3869. admin_label: ''
  3870. operator: contains
  3871. value: ''
  3872. group: 1
  3873. exposed: true
  3874. expose:
  3875. operator_id: title_op
  3876. label: Title
  3877. description: ''
  3878. use_operator: false
  3879. operator: title_op
  3880. identifier: title
  3881. required: false
  3882. remember: false
  3883. multiple: false
  3884. remember_roles:
  3885. authenticated: authenticated
  3886. anonymous: '0'
  3887. administrator: '0'
  3888. placeholder: ''
  3889. is_grouped: false
  3890. group_info:
  3891. label: ''
  3892. description: ''
  3893. identifier: ''
  3894. optional: true
  3895. widget: select
  3896. multiple: false
  3897. remember: false
  3898. default_group: All
  3899. default_group_multiple: { }
  3900. group_items: { }
  3901. plugin_id: string
  3902. entity_type: node
  3903. entity_field: title
  3904. type:
  3905. id: type
  3906. table: node_field_data
  3907. field: type
  3908. relationship: none
  3909. group_type: group
  3910. admin_label: ''
  3911. operator: in
  3912. value:
  3913. static: static
  3914. group: 1
  3915. exposed: false
  3916. expose:
  3917. operator_id: ''
  3918. label: ''
  3919. description: ''
  3920. use_operator: false
  3921. operator: ''
  3922. identifier: ''
  3923. required: false
  3924. remember: false
  3925. multiple: false
  3926. remember_roles:
  3927. authenticated: authenticated
  3928. reduce: false
  3929. is_grouped: false
  3930. group_info:
  3931. label: ''
  3932. description: ''
  3933. identifier: ''
  3934. optional: true
  3935. widget: select
  3936. multiple: false
  3937. remember: false
  3938. default_group: All
  3939. default_group_multiple: { }
  3940. group_items: { }
  3941. entity_type: node
  3942. entity_field: type
  3943. plugin_id: bundle
  3944. langcode:
  3945. id: langcode
  3946. table: node_field_data
  3947. field: langcode
  3948. relationship: none
  3949. group_type: group
  3950. admin_label: ''
  3951. operator: in
  3952. value:
  3953. '***LANGUAGE_language_interface***': '***LANGUAGE_language_interface***'
  3954. und: und
  3955. group: 1
  3956. exposed: false
  3957. expose:
  3958. operator_id: ''
  3959. label: ''
  3960. description: ''
  3961. use_operator: false
  3962. operator: ''
  3963. identifier: ''
  3964. required: false
  3965. remember: false
  3966. multiple: false
  3967. remember_roles:
  3968. authenticated: authenticated
  3969. reduce: false
  3970. is_grouped: false
  3971. group_info:
  3972. label: ''
  3973. description: ''
  3974. identifier: ''
  3975. optional: true
  3976. widget: select
  3977. multiple: false
  3978. remember: false
  3979. default_group: All
  3980. default_group_multiple: { }
  3981. group_items: { }
  3982. entity_type: node
  3983. entity_field: langcode
  3984. plugin_id: language
  3985. filter_groups:
  3986. operator: AND
  3987. groups:
  3988. 1: AND
  3989. fields:
  3990. field_visuel:
  3991. id: field_visuel
  3992. table: node__field_visuel
  3993. field: field_visuel
  3994. relationship: none
  3995. group_type: group
  3996. admin_label: ''
  3997. label: Visuel
  3998. exclude: false
  3999. alter:
  4000. alter_text: false
  4001. text: ''
  4002. make_link: false
  4003. path: ''
  4004. absolute: false
  4005. external: false
  4006. replace_spaces: false
  4007. path_case: none
  4008. trim_whitespace: false
  4009. alt: ''
  4010. rel: ''
  4011. link_class: ''
  4012. prefix: ''
  4013. suffix: ''
  4014. target: ''
  4015. nl2br: false
  4016. max_length: 0
  4017. word_boundary: true
  4018. ellipsis: true
  4019. more_link: false
  4020. more_link_text: ''
  4021. more_link_path: ''
  4022. strip_tags: false
  4023. trim: false
  4024. preserve_tags: ''
  4025. html: false
  4026. element_type: ''
  4027. element_class: ''
  4028. element_label_type: ''
  4029. element_label_class: ''
  4030. element_label_colon: true
  4031. element_wrapper_type: ''
  4032. element_wrapper_class: ''
  4033. element_default_classes: true
  4034. empty: ''
  4035. hide_empty: false
  4036. empty_zero: false
  4037. hide_alter_empty: true
  4038. click_sort_column: target_id
  4039. type: image
  4040. settings:
  4041. image_style: thumbnail
  4042. image_link: ''
  4043. group_column: ''
  4044. group_columns: { }
  4045. group_rows: true
  4046. delta_limit: 0
  4047. delta_offset: 0
  4048. delta_reversed: false
  4049. delta_first_last: false
  4050. multi_type: separator
  4051. separator: ', '
  4052. field_api_classes: false
  4053. plugin_id: field
  4054. title:
  4055. id: title
  4056. table: node_field_data
  4057. field: title
  4058. label: Title
  4059. exclude: false
  4060. alter:
  4061. alter_text: false
  4062. element_class: ''
  4063. element_default_classes: true
  4064. empty: ''
  4065. hide_empty: false
  4066. empty_zero: false
  4067. hide_alter_empty: true
  4068. entity_type: node
  4069. entity_field: title
  4070. type: string
  4071. settings:
  4072. link_to_entity: true
  4073. plugin_id: field
  4074. field_workflow_generic:
  4075. id: field_workflow_generic
  4076. table: node__field_workflow_generic
  4077. field: field_workflow_generic
  4078. relationship: none
  4079. group_type: group
  4080. admin_label: ''
  4081. label: Workflow
  4082. exclude: false
  4083. alter:
  4084. alter_text: false
  4085. text: ''
  4086. make_link: false
  4087. path: ''
  4088. absolute: false
  4089. external: false
  4090. replace_spaces: false
  4091. path_case: none
  4092. trim_whitespace: false
  4093. alt: ''
  4094. rel: ''
  4095. link_class: ''
  4096. prefix: ''
  4097. suffix: ''
  4098. target: ''
  4099. nl2br: false
  4100. max_length: 0
  4101. word_boundary: true
  4102. ellipsis: true
  4103. more_link: false
  4104. more_link_text: ''
  4105. more_link_path: ''
  4106. strip_tags: false
  4107. trim: false
  4108. preserve_tags: ''
  4109. html: false
  4110. element_type: ''
  4111. element_class: ''
  4112. element_label_type: ''
  4113. element_label_class: ''
  4114. element_label_colon: true
  4115. element_wrapper_type: ''
  4116. element_wrapper_class: ''
  4117. element_default_classes: true
  4118. empty: ''
  4119. hide_empty: false
  4120. empty_zero: false
  4121. hide_alter_empty: true
  4122. click_sort_column: value
  4123. type: list_default
  4124. settings: { }
  4125. group_column: value
  4126. group_columns: { }
  4127. group_rows: true
  4128. delta_limit: 0
  4129. delta_offset: 0
  4130. delta_reversed: false
  4131. delta_first_last: false
  4132. multi_type: separator
  4133. separator: ', '
  4134. field_api_classes: false
  4135. plugin_id: field
  4136. operations:
  4137. id: operations
  4138. table: node
  4139. field: operations
  4140. relationship: none
  4141. group_type: group
  4142. admin_label: ''
  4143. label: Operations
  4144. exclude: false
  4145. alter:
  4146. alter_text: false
  4147. text: ''
  4148. make_link: false
  4149. path: ''
  4150. absolute: false
  4151. external: false
  4152. replace_spaces: false
  4153. path_case: none
  4154. trim_whitespace: false
  4155. alt: ''
  4156. rel: ''
  4157. link_class: ''
  4158. prefix: ''
  4159. suffix: ''
  4160. target: ''
  4161. nl2br: false
  4162. max_length: 0
  4163. word_boundary: true
  4164. ellipsis: true
  4165. more_link: false
  4166. more_link_text: ''
  4167. more_link_path: ''
  4168. strip_tags: false
  4169. trim: false
  4170. preserve_tags: ''
  4171. html: false
  4172. element_type: ''
  4173. element_class: ''
  4174. element_label_type: ''
  4175. element_label_class: ''
  4176. element_label_colon: true
  4177. element_wrapper_type: ''
  4178. element_wrapper_class: ''
  4179. element_default_classes: true
  4180. empty: ''
  4181. hide_empty: false
  4182. empty_zero: false
  4183. hide_alter_empty: true
  4184. destination: true
  4185. plugin_id: entity_operations
  4186. name:
  4187. id: name
  4188. table: users_field_data
  4189. field: name
  4190. relationship: uid
  4191. label: Author
  4192. exclude: false
  4193. alter:
  4194. alter_text: false
  4195. element_class: ''
  4196. element_default_classes: true
  4197. empty: ''
  4198. hide_empty: false
  4199. empty_zero: false
  4200. hide_alter_empty: true
  4201. plugin_id: field
  4202. type: user_name
  4203. entity_type: user
  4204. entity_field: name
  4205. changed:
  4206. id: changed
  4207. table: node_field_data
  4208. field: changed
  4209. label: Updated
  4210. exclude: false
  4211. alter:
  4212. alter_text: false
  4213. element_class: ''
  4214. element_default_classes: true
  4215. empty: ''
  4216. hide_empty: false
  4217. empty_zero: false
  4218. hide_alter_empty: true
  4219. type: timestamp
  4220. settings:
  4221. date_format: short
  4222. custom_date_format: ''
  4223. timezone: ''
  4224. plugin_id: field
  4225. entity_type: node
  4226. entity_field: changed
  4227. status:
  4228. id: status
  4229. table: node_field_data
  4230. field: status
  4231. relationship: none
  4232. group_type: group
  4233. admin_label: ''
  4234. label: Status
  4235. exclude: true
  4236. alter:
  4237. alter_text: false
  4238. text: ''
  4239. make_link: false
  4240. path: ''
  4241. absolute: false
  4242. external: false
  4243. replace_spaces: false
  4244. path_case: none
  4245. trim_whitespace: false
  4246. alt: ''
  4247. rel: ''
  4248. link_class: ''
  4249. prefix: ''
  4250. suffix: ''
  4251. target: ''
  4252. nl2br: false
  4253. max_length: 0
  4254. word_boundary: true
  4255. ellipsis: true
  4256. more_link: false
  4257. more_link_text: ''
  4258. more_link_path: ''
  4259. strip_tags: false
  4260. trim: false
  4261. preserve_tags: ''
  4262. html: false
  4263. element_type: ''
  4264. element_class: ''
  4265. element_label_type: ''
  4266. element_label_class: ''
  4267. element_label_colon: true
  4268. element_wrapper_type: ''
  4269. element_wrapper_class: ''
  4270. element_default_classes: true
  4271. empty: ''
  4272. hide_empty: false
  4273. empty_zero: false
  4274. hide_alter_empty: true
  4275. click_sort_column: value
  4276. type: boolean
  4277. settings:
  4278. format: custom
  4279. format_custom_true: Published
  4280. format_custom_false: Unpublished
  4281. group_column: value
  4282. group_columns: { }
  4283. group_rows: true
  4284. delta_limit: 0
  4285. delta_offset: 0
  4286. delta_reversed: false
  4287. delta_first_last: false
  4288. multi_type: separator
  4289. separator: ', '
  4290. field_api_classes: false
  4291. plugin_id: field
  4292. entity_type: node
  4293. entity_field: status
  4294. field_afficher_en_page_d_acceuil:
  4295. id: field_afficher_en_page_d_acceuil
  4296. table: node__field_afficher_en_page_d_acceuil
  4297. field: field_afficher_en_page_d_acceuil
  4298. relationship: none
  4299. group_type: group
  4300. admin_label: ''
  4301. label: 'Afficher en page d''acceuil'
  4302. exclude: false
  4303. alter:
  4304. alter_text: false
  4305. text: ''
  4306. make_link: false
  4307. path: ''
  4308. absolute: false
  4309. external: false
  4310. replace_spaces: false
  4311. path_case: none
  4312. trim_whitespace: false
  4313. alt: ''
  4314. rel: ''
  4315. link_class: ''
  4316. prefix: ''
  4317. suffix: ''
  4318. target: ''
  4319. nl2br: false
  4320. max_length: 0
  4321. word_boundary: true
  4322. ellipsis: true
  4323. more_link: false
  4324. more_link_text: ''
  4325. more_link_path: ''
  4326. strip_tags: false
  4327. trim: false
  4328. preserve_tags: ''
  4329. html: false
  4330. element_type: ''
  4331. element_class: ''
  4332. element_label_type: ''
  4333. element_label_class: ''
  4334. element_label_colon: true
  4335. element_wrapper_type: ''
  4336. element_wrapper_class: ''
  4337. element_default_classes: true
  4338. empty: ''
  4339. hide_empty: false
  4340. empty_zero: false
  4341. hide_alter_empty: true
  4342. click_sort_column: value
  4343. type: boolean
  4344. settings:
  4345. format: yes-no
  4346. format_custom_true: ''
  4347. format_custom_false: ''
  4348. group_column: value
  4349. group_columns: { }
  4350. group_rows: true
  4351. delta_limit: 0
  4352. delta_offset: 0
  4353. delta_reversed: false
  4354. delta_first_last: false
  4355. multi_type: separator
  4356. separator: ', '
  4357. field_api_classes: false
  4358. plugin_id: field
  4359. title: Static
  4360. display_plugin: page
  4361. display_title: Static
  4362. id: page_4
  4363. position: 2
  4364. cache_metadata:
  4365. contexts:
  4366. - 'languages:language_content'
  4367. - 'languages:language_interface'
  4368. - url
  4369. - url.query_args
  4370. - user
  4371. - 'user.node_grants:view'
  4372. - user.roles
  4373. max-age: -1
  4374. tags:
  4375. - 'config:field.storage.node.field_afficher_en_page_d_acceuil'
  4376. - 'config:field.storage.node.field_visuel'
  4377. - 'config:field.storage.node.field_workflow_generic'