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