views.view.content.yml 159 KB

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