views.view.content.yml 159 KB

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