views.view.admin_nodes.yml 139 KB

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