views.view.content.yml 160 KB

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