views.view.admin_nodes.yml 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073
  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_breves
  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. - taxonomy.vocabulary.company
  21. - user.role.admin
  22. - user.role.root
  23. module:
  24. - computed_field
  25. - content_lock
  26. - image
  27. - materio_samples
  28. - node
  29. - options
  30. - pagerer
  31. - select_translation
  32. - taxonomy
  33. - user
  34. - views_bulk_operations
  35. - workflow
  36. id: admin_nodes
  37. label: 'Admin Nodes'
  38. module: views
  39. description: ''
  40. tag: ''
  41. base_table: node_field_data
  42. base_field: nid
  43. core: 8.x
  44. display:
  45. default:
  46. display_plugin: default
  47. id: default
  48. display_title: Master
  49. position: 0
  50. display_options:
  51. access:
  52. type: role
  53. options:
  54. role:
  55. admin: admin
  56. root: root
  57. cache:
  58. type: tag
  59. options: { }
  60. query:
  61. type: views_query
  62. options:
  63. disable_sql_rewrite: false
  64. distinct: false
  65. replica: false
  66. query_comment: ''
  67. query_tags: { }
  68. exposed_form:
  69. type: basic
  70. options:
  71. submit_button: Apply
  72. reset_button: true
  73. reset_button_label: Reset
  74. exposed_sorts_label: 'Sort by'
  75. expose_sort_order: true
  76. sort_asc_label: Asc
  77. sort_desc_label: Desc
  78. pager:
  79. type: pagerer
  80. options:
  81. preset: default
  82. items_per_page: 50
  83. offset: 0
  84. id: '0'
  85. total_pages: ''
  86. expose:
  87. items_per_page: 0
  88. items_per_page_label: 'Items per page'
  89. items_per_page_options: '5, 10, 25, 50'
  90. items_per_page_options_all: 0
  91. items_per_page_options_all_label: '- All -'
  92. offset: 0
  93. offset_label: Offset
  94. style:
  95. type: table
  96. options:
  97. grouping: { }
  98. row_class: ''
  99. default_row_class: true
  100. override: true
  101. sticky: false
  102. caption: ''
  103. summary: ''
  104. description: ''
  105. columns:
  106. views_bulk_operations_bulk_form: views_bulk_operations_bulk_form
  107. field_materiau_images: field_materiau_images
  108. field_visuel: field_materiau_images
  109. field_reference: title
  110. nid: title
  111. title: title
  112. operations: title
  113. field_thesaurus: field_thesaurus
  114. field_tags: field_tags
  115. field_manufacturer: field_manufacturer
  116. field_distributor: field_distributor
  117. field_linked_materials: field_linked_materials
  118. field_linked_breves: field_linked_breves
  119. field_samples: field_samples
  120. translation_count: translation_count
  121. field_workflow: field_workflow
  122. field_migration: field_migration
  123. is_locked: is_locked
  124. field_memo: field_memo
  125. info:
  126. views_bulk_operations_bulk_form:
  127. align: ''
  128. separator: ''
  129. empty_column: false
  130. responsive: ''
  131. field_materiau_images:
  132. align: ''
  133. separator: ''
  134. empty_column: false
  135. responsive: ''
  136. field_visuel:
  137. align: ''
  138. separator: ''
  139. empty_column: false
  140. responsive: ''
  141. field_reference:
  142. sortable: false
  143. default_sort_order: asc
  144. align: ''
  145. separator: ''
  146. empty_column: false
  147. responsive: ''
  148. nid:
  149. sortable: false
  150. default_sort_order: asc
  151. align: ''
  152. separator: ''
  153. empty_column: false
  154. responsive: ''
  155. title:
  156. sortable: false
  157. default_sort_order: asc
  158. align: ''
  159. separator: '<br/>'
  160. empty_column: false
  161. responsive: ''
  162. operations:
  163. align: ''
  164. separator: ''
  165. empty_column: false
  166. responsive: ''
  167. field_thesaurus:
  168. align: ''
  169. separator: '<br/>'
  170. empty_column: false
  171. responsive: ''
  172. field_tags:
  173. align: ''
  174. separator: ''
  175. empty_column: false
  176. responsive: ''
  177. field_manufacturer:
  178. align: ''
  179. separator: ''
  180. empty_column: true
  181. responsive: ''
  182. field_distributor:
  183. align: ''
  184. separator: ''
  185. empty_column: true
  186. responsive: ''
  187. field_linked_materials:
  188. align: ''
  189. separator: ''
  190. empty_column: false
  191. responsive: ''
  192. field_linked_breves:
  193. align: ''
  194. separator: ''
  195. empty_column: true
  196. responsive: ''
  197. field_samples:
  198. align: ''
  199. separator: ''
  200. empty_column: false
  201. responsive: ''
  202. translation_count:
  203. sortable: false
  204. default_sort_order: asc
  205. align: ''
  206. separator: ''
  207. empty_column: false
  208. responsive: ''
  209. field_workflow:
  210. sortable: false
  211. default_sort_order: asc
  212. align: ''
  213. separator: ''
  214. empty_column: false
  215. responsive: ''
  216. field_migration:
  217. sortable: false
  218. default_sort_order: asc
  219. align: ''
  220. separator: ''
  221. empty_column: false
  222. responsive: ''
  223. is_locked:
  224. sortable: false
  225. default_sort_order: asc
  226. align: ''
  227. separator: ''
  228. empty_column: false
  229. responsive: ''
  230. field_memo:
  231. align: ''
  232. separator: ''
  233. empty_column: false
  234. responsive: ''
  235. default: '-1'
  236. empty_table: false
  237. row:
  238. type: fields
  239. fields:
  240. views_bulk_operations_bulk_form:
  241. id: views_bulk_operations_bulk_form
  242. table: views
  243. field: views_bulk_operations_bulk_form
  244. relationship: none
  245. group_type: group
  246. admin_label: ''
  247. label: 'Views bulk operations'
  248. exclude: false
  249. alter:
  250. alter_text: false
  251. text: ''
  252. make_link: false
  253. path: ''
  254. absolute: false
  255. external: false
  256. replace_spaces: false
  257. path_case: none
  258. trim_whitespace: false
  259. alt: ''
  260. rel: ''
  261. link_class: ''
  262. prefix: ''
  263. suffix: ''
  264. target: ''
  265. nl2br: false
  266. max_length: 0
  267. word_boundary: true
  268. ellipsis: true
  269. more_link: false
  270. more_link_text: ''
  271. more_link_path: ''
  272. strip_tags: false
  273. trim: false
  274. preserve_tags: ''
  275. html: false
  276. element_type: ''
  277. element_class: ''
  278. element_label_type: ''
  279. element_label_class: ''
  280. element_label_colon: true
  281. element_wrapper_type: ''
  282. element_wrapper_class: ''
  283. element_default_classes: true
  284. empty: ''
  285. hide_empty: false
  286. empty_zero: false
  287. hide_alter_empty: true
  288. batch: true
  289. batch_size: 10
  290. form_step: true
  291. buttons: false
  292. clear_on_exposed: 0
  293. action_title: Action
  294. selected_actions:
  295. 'entity:break_lock:node': 'entity:break_lock:node'
  296. node_promote_action: 0
  297. node_unpromote_action: 0
  298. node_unpublish_by_keyword_action: 0
  299. node_assign_owner_action: 0
  300. node_publish_action: 0
  301. node_unpublish_action: 0
  302. node_make_unsticky_action: 0
  303. node_save_action: node_save_action
  304. node_make_sticky_action: 0
  305. views_bulk_edit: 0
  306. views_bulk_operations_delete_entity: views_bulk_operations_delete_entity
  307. workflow_node_given_state_action: 0
  308. workflow_node_next_state_action: 0
  309. pathauto_update_alias: pathauto_update_alias
  310. 'entity:delete_action:node': 0
  311. 'entity:unpublish_action:node': 0
  312. 'entity:publish_action:node': 0
  313. 'entity:save_action:node': 0
  314. preconfiguration:
  315. 'entity:break_lock:node':
  316. label_override: ''
  317. node_save_action:
  318. label_override: ''
  319. views_bulk_operations_delete_entity:
  320. label_override: ''
  321. pathauto_update_alias:
  322. label_override: ''
  323. plugin_id: views_bulk_operations_bulk_form
  324. field_materiau_images:
  325. id: field_materiau_images
  326. table: node__field_materiau_images
  327. field: field_materiau_images
  328. relationship: none
  329. group_type: group
  330. admin_label: ''
  331. label: Images
  332. exclude: false
  333. alter:
  334. alter_text: false
  335. text: ''
  336. make_link: false
  337. path: ''
  338. absolute: false
  339. external: false
  340. replace_spaces: false
  341. path_case: none
  342. trim_whitespace: false
  343. alt: ''
  344. rel: ''
  345. link_class: ''
  346. prefix: ''
  347. suffix: ''
  348. target: ''
  349. nl2br: false
  350. max_length: 0
  351. word_boundary: true
  352. ellipsis: true
  353. more_link: false
  354. more_link_text: ''
  355. more_link_path: ''
  356. strip_tags: false
  357. trim: false
  358. preserve_tags: ''
  359. html: false
  360. element_type: ''
  361. element_class: ''
  362. element_label_type: ''
  363. element_label_class: ''
  364. element_label_colon: true
  365. element_wrapper_type: ''
  366. element_wrapper_class: ''
  367. element_default_classes: true
  368. empty: ''
  369. hide_empty: false
  370. empty_zero: false
  371. hide_alter_empty: true
  372. click_sort_column: title
  373. type: image
  374. settings:
  375. image_style: medium
  376. image_link: ''
  377. group_column: ''
  378. group_columns: { }
  379. group_rows: true
  380. delta_limit: 1
  381. delta_offset: 0
  382. delta_reversed: false
  383. delta_first_last: false
  384. multi_type: separator
  385. separator: ', '
  386. field_api_classes: false
  387. plugin_id: field
  388. field_visuel:
  389. id: field_visuel
  390. table: node__field_visuel
  391. field: field_visuel
  392. relationship: none
  393. group_type: group
  394. admin_label: ''
  395. label: Visuel
  396. exclude: false
  397. alter:
  398. alter_text: false
  399. text: ''
  400. make_link: false
  401. path: ''
  402. absolute: false
  403. external: false
  404. replace_spaces: false
  405. path_case: none
  406. trim_whitespace: false
  407. alt: ''
  408. rel: ''
  409. link_class: ''
  410. prefix: ''
  411. suffix: ''
  412. target: ''
  413. nl2br: false
  414. max_length: 0
  415. word_boundary: true
  416. ellipsis: true
  417. more_link: false
  418. more_link_text: ''
  419. more_link_path: ''
  420. strip_tags: false
  421. trim: false
  422. preserve_tags: ''
  423. html: false
  424. element_type: ''
  425. element_class: ''
  426. element_label_type: ''
  427. element_label_class: ''
  428. element_label_colon: true
  429. element_wrapper_type: ''
  430. element_wrapper_class: ''
  431. element_default_classes: true
  432. empty: ''
  433. hide_empty: false
  434. empty_zero: false
  435. hide_alter_empty: true
  436. click_sort_column: target_id
  437. type: image
  438. settings:
  439. image_style: medium
  440. image_link: ''
  441. group_column: ''
  442. group_columns: { }
  443. group_rows: true
  444. delta_limit: 1
  445. delta_offset: 0
  446. delta_reversed: false
  447. delta_first_last: false
  448. multi_type: separator
  449. separator: ', '
  450. field_api_classes: false
  451. plugin_id: field
  452. field_reference:
  453. id: field_reference
  454. table: node__field_reference
  455. field: field_reference
  456. relationship: none
  457. group_type: group
  458. admin_label: ''
  459. label: Reference
  460. exclude: false
  461. alter:
  462. alter_text: false
  463. text: ''
  464. make_link: false
  465. path: ''
  466. absolute: false
  467. external: false
  468. replace_spaces: false
  469. path_case: none
  470. trim_whitespace: false
  471. alt: ''
  472. rel: ''
  473. link_class: ''
  474. prefix: ''
  475. suffix: ''
  476. target: ''
  477. nl2br: false
  478. max_length: 0
  479. word_boundary: true
  480. ellipsis: true
  481. more_link: false
  482. more_link_text: ''
  483. more_link_path: ''
  484. strip_tags: false
  485. trim: false
  486. preserve_tags: ''
  487. html: false
  488. element_type: ''
  489. element_class: ''
  490. element_label_type: ''
  491. element_label_class: ''
  492. element_label_colon: true
  493. element_wrapper_type: ''
  494. element_wrapper_class: ''
  495. element_default_classes: true
  496. empty: ''
  497. hide_empty: false
  498. empty_zero: false
  499. hide_alter_empty: true
  500. click_sort_column: value
  501. type: computed_string
  502. settings:
  503. sanitized: 1
  504. cache_unit: '-1'
  505. cache_duration: '1'
  506. group_column: value
  507. group_columns: { }
  508. group_rows: true
  509. delta_limit: 0
  510. delta_offset: 0
  511. delta_reversed: false
  512. delta_first_last: false
  513. multi_type: separator
  514. separator: ', '
  515. field_api_classes: false
  516. plugin_id: field
  517. nid:
  518. id: nid
  519. table: node_field_data
  520. field: nid
  521. relationship: none
  522. group_type: group
  523. admin_label: ''
  524. label: ID
  525. exclude: true
  526. alter:
  527. alter_text: false
  528. text: ''
  529. make_link: false
  530. path: ''
  531. absolute: false
  532. external: false
  533. replace_spaces: false
  534. path_case: none
  535. trim_whitespace: false
  536. alt: ''
  537. rel: ''
  538. link_class: ''
  539. prefix: ''
  540. suffix: ''
  541. target: ''
  542. nl2br: false
  543. max_length: 0
  544. word_boundary: true
  545. ellipsis: true
  546. more_link: false
  547. more_link_text: ''
  548. more_link_path: ''
  549. strip_tags: false
  550. trim: false
  551. preserve_tags: ''
  552. html: false
  553. element_type: ''
  554. element_class: ''
  555. element_label_type: ''
  556. element_label_class: ''
  557. element_label_colon: true
  558. element_wrapper_type: ''
  559. element_wrapper_class: ''
  560. element_default_classes: true
  561. empty: ''
  562. hide_empty: false
  563. empty_zero: false
  564. hide_alter_empty: true
  565. click_sort_column: value
  566. type: number_integer
  567. settings:
  568. thousand_separator: ''
  569. prefix_suffix: true
  570. group_column: value
  571. group_columns: { }
  572. group_rows: true
  573. delta_limit: 0
  574. delta_offset: 0
  575. delta_reversed: false
  576. delta_first_last: false
  577. multi_type: separator
  578. separator: ', '
  579. field_api_classes: false
  580. entity_type: node
  581. entity_field: nid
  582. plugin_id: field
  583. title:
  584. id: title
  585. table: node_field_data
  586. field: title
  587. entity_type: node
  588. entity_field: title
  589. alter:
  590. alter_text: false
  591. make_link: false
  592. absolute: false
  593. trim: false
  594. word_boundary: false
  595. ellipsis: false
  596. strip_tags: false
  597. html: false
  598. hide_empty: false
  599. empty_zero: false
  600. settings:
  601. link_to_entity: true
  602. plugin_id: field
  603. relationship: none
  604. group_type: group
  605. admin_label: ''
  606. label: Title
  607. exclude: false
  608. element_type: ''
  609. element_class: ''
  610. element_label_type: ''
  611. element_label_class: ''
  612. element_label_colon: true
  613. element_wrapper_type: ''
  614. element_wrapper_class: ''
  615. element_default_classes: true
  616. empty: ''
  617. hide_alter_empty: true
  618. click_sort_column: value
  619. type: string
  620. group_column: value
  621. group_columns: { }
  622. group_rows: true
  623. delta_limit: 0
  624. delta_offset: 0
  625. delta_reversed: false
  626. delta_first_last: false
  627. multi_type: separator
  628. separator: ', '
  629. field_api_classes: false
  630. operations:
  631. id: operations
  632. table: node
  633. field: operations
  634. relationship: none
  635. group_type: group
  636. admin_label: ''
  637. label: 'Operations links'
  638. exclude: false
  639. alter:
  640. alter_text: false
  641. text: ''
  642. make_link: false
  643. path: ''
  644. absolute: false
  645. external: false
  646. replace_spaces: false
  647. path_case: none
  648. trim_whitespace: false
  649. alt: ''
  650. rel: ''
  651. link_class: ''
  652. prefix: ''
  653. suffix: ''
  654. target: ''
  655. nl2br: false
  656. max_length: 0
  657. word_boundary: true
  658. ellipsis: true
  659. more_link: false
  660. more_link_text: ''
  661. more_link_path: ''
  662. strip_tags: false
  663. trim: false
  664. preserve_tags: ''
  665. html: false
  666. element_type: ''
  667. element_class: ''
  668. element_label_type: ''
  669. element_label_class: ''
  670. element_label_colon: true
  671. element_wrapper_type: ''
  672. element_wrapper_class: ''
  673. element_default_classes: true
  674. empty: ''
  675. hide_empty: false
  676. empty_zero: false
  677. hide_alter_empty: true
  678. destination: true
  679. entity_type: node
  680. plugin_id: entity_operations
  681. field_thesaurus:
  682. id: field_thesaurus
  683. table: node__field_thesaurus
  684. field: field_thesaurus
  685. relationship: none
  686. group_type: group
  687. admin_label: ''
  688. label: Thesaurus
  689. exclude: false
  690. alter:
  691. alter_text: false
  692. text: ''
  693. make_link: false
  694. path: ''
  695. absolute: false
  696. external: false
  697. replace_spaces: false
  698. path_case: none
  699. trim_whitespace: false
  700. alt: ''
  701. rel: ''
  702. link_class: ''
  703. prefix: ''
  704. suffix: ''
  705. target: ''
  706. nl2br: false
  707. max_length: 0
  708. word_boundary: true
  709. ellipsis: true
  710. more_link: false
  711. more_link_text: ''
  712. more_link_path: ''
  713. strip_tags: false
  714. trim: false
  715. preserve_tags: ''
  716. html: false
  717. element_type: ''
  718. element_class: ''
  719. element_label_type: ''
  720. element_label_class: ''
  721. element_label_colon: true
  722. element_wrapper_type: ''
  723. element_wrapper_class: ''
  724. element_default_classes: true
  725. empty: ''
  726. hide_empty: false
  727. empty_zero: false
  728. hide_alter_empty: true
  729. click_sort_column: target_id
  730. type: entity_reference_label
  731. settings:
  732. link: true
  733. group_column: target_id
  734. group_columns: { }
  735. group_rows: true
  736. delta_limit: 5
  737. delta_offset: 0
  738. delta_reversed: false
  739. delta_first_last: false
  740. multi_type: separator
  741. separator: '<br/>'
  742. field_api_classes: false
  743. plugin_id: field
  744. field_tags:
  745. id: field_tags
  746. table: node__field_tags
  747. field: field_tags
  748. relationship: none
  749. group_type: group
  750. admin_label: ''
  751. label: Tags
  752. exclude: false
  753. alter:
  754. alter_text: false
  755. text: ''
  756. make_link: false
  757. path: ''
  758. absolute: false
  759. external: false
  760. replace_spaces: false
  761. path_case: none
  762. trim_whitespace: false
  763. alt: ''
  764. rel: ''
  765. link_class: ''
  766. prefix: ''
  767. suffix: ''
  768. target: ''
  769. nl2br: false
  770. max_length: 0
  771. word_boundary: true
  772. ellipsis: true
  773. more_link: false
  774. more_link_text: ''
  775. more_link_path: ''
  776. strip_tags: false
  777. trim: false
  778. preserve_tags: ''
  779. html: false
  780. element_type: ''
  781. element_class: ''
  782. element_label_type: ''
  783. element_label_class: ''
  784. element_label_colon: true
  785. element_wrapper_type: ''
  786. element_wrapper_class: ''
  787. element_default_classes: true
  788. empty: ''
  789. hide_empty: false
  790. empty_zero: false
  791. hide_alter_empty: true
  792. click_sort_column: target_id
  793. type: entity_reference_label
  794. settings:
  795. link: true
  796. group_column: target_id
  797. group_columns: { }
  798. group_rows: true
  799. delta_limit: 0
  800. delta_offset: 0
  801. delta_reversed: false
  802. delta_first_last: false
  803. multi_type: separator
  804. separator: ', '
  805. field_api_classes: false
  806. plugin_id: field
  807. field_manufacturer:
  808. id: field_manufacturer
  809. table: node__field_manufacturer
  810. field: field_manufacturer
  811. relationship: none
  812. group_type: group
  813. admin_label: ''
  814. label: Manufacturer
  815. exclude: false
  816. alter:
  817. alter_text: false
  818. text: ''
  819. make_link: false
  820. path: ''
  821. absolute: false
  822. external: false
  823. replace_spaces: false
  824. path_case: none
  825. trim_whitespace: false
  826. alt: ''
  827. rel: ''
  828. link_class: ''
  829. prefix: ''
  830. suffix: ''
  831. target: ''
  832. nl2br: false
  833. max_length: 0
  834. word_boundary: true
  835. ellipsis: true
  836. more_link: false
  837. more_link_text: ''
  838. more_link_path: ''
  839. strip_tags: false
  840. trim: false
  841. preserve_tags: ''
  842. html: false
  843. element_type: ''
  844. element_class: ''
  845. element_label_type: ''
  846. element_label_class: ''
  847. element_label_colon: true
  848. element_wrapper_type: ''
  849. element_wrapper_class: ''
  850. element_default_classes: true
  851. empty: ''
  852. hide_empty: false
  853. empty_zero: false
  854. hide_alter_empty: true
  855. click_sort_column: target_id
  856. type: entity_reference_label
  857. settings:
  858. link: true
  859. group_column: target_id
  860. group_columns: { }
  861. group_rows: true
  862. delta_limit: 0
  863. delta_offset: 0
  864. delta_reversed: false
  865. delta_first_last: false
  866. multi_type: separator
  867. separator: ', '
  868. field_api_classes: false
  869. plugin_id: field
  870. field_distributor:
  871. id: field_distributor
  872. table: node__field_distributor
  873. field: field_distributor
  874. relationship: none
  875. group_type: group
  876. admin_label: ''
  877. label: Distributor
  878. exclude: false
  879. alter:
  880. alter_text: false
  881. text: ''
  882. make_link: false
  883. path: ''
  884. absolute: false
  885. external: false
  886. replace_spaces: false
  887. path_case: none
  888. trim_whitespace: false
  889. alt: ''
  890. rel: ''
  891. link_class: ''
  892. prefix: ''
  893. suffix: ''
  894. target: ''
  895. nl2br: false
  896. max_length: 0
  897. word_boundary: true
  898. ellipsis: true
  899. more_link: false
  900. more_link_text: ''
  901. more_link_path: ''
  902. strip_tags: false
  903. trim: false
  904. preserve_tags: ''
  905. html: false
  906. element_type: ''
  907. element_class: ''
  908. element_label_type: ''
  909. element_label_class: ''
  910. element_label_colon: true
  911. element_wrapper_type: ''
  912. element_wrapper_class: ''
  913. element_default_classes: true
  914. empty: ''
  915. hide_empty: false
  916. empty_zero: false
  917. hide_alter_empty: true
  918. click_sort_column: target_id
  919. type: entity_reference_label
  920. settings:
  921. link: true
  922. group_column: target_id
  923. group_columns: { }
  924. group_rows: true
  925. delta_limit: 0
  926. delta_offset: 0
  927. delta_reversed: false
  928. delta_first_last: false
  929. multi_type: separator
  930. separator: ', '
  931. field_api_classes: false
  932. plugin_id: field
  933. field_linked_materials:
  934. id: field_linked_materials
  935. table: node__field_linked_materials
  936. field: field_linked_materials
  937. relationship: none
  938. group_type: group
  939. admin_label: ''
  940. label: 'Linked Materials'
  941. exclude: false
  942. alter:
  943. alter_text: false
  944. text: ''
  945. make_link: false
  946. path: ''
  947. absolute: false
  948. external: false
  949. replace_spaces: false
  950. path_case: none
  951. trim_whitespace: false
  952. alt: ''
  953. rel: ''
  954. link_class: ''
  955. prefix: ''
  956. suffix: ''
  957. target: ''
  958. nl2br: false
  959. max_length: 0
  960. word_boundary: true
  961. ellipsis: true
  962. more_link: false
  963. more_link_text: ''
  964. more_link_path: ''
  965. strip_tags: false
  966. trim: false
  967. preserve_tags: ''
  968. html: false
  969. element_type: ''
  970. element_class: ''
  971. element_label_type: ''
  972. element_label_class: ''
  973. element_label_colon: true
  974. element_wrapper_type: ''
  975. element_wrapper_class: ''
  976. element_default_classes: true
  977. empty: ''
  978. hide_empty: false
  979. empty_zero: false
  980. hide_alter_empty: true
  981. click_sort_column: target_id
  982. type: entity_reference_label
  983. settings:
  984. link: true
  985. group_column: target_id
  986. group_columns: { }
  987. group_rows: true
  988. delta_limit: 0
  989. delta_offset: 0
  990. delta_reversed: false
  991. delta_first_last: false
  992. multi_type: separator
  993. separator: '<br/>'
  994. field_api_classes: false
  995. plugin_id: field
  996. field_linked_breves:
  997. id: field_linked_breves
  998. table: node__field_linked_breves
  999. field: field_linked_breves
  1000. relationship: none
  1001. group_type: group
  1002. admin_label: ''
  1003. label: 'Linked Brèves'
  1004. exclude: false
  1005. alter:
  1006. alter_text: false
  1007. text: ''
  1008. make_link: false
  1009. path: ''
  1010. absolute: false
  1011. external: false
  1012. replace_spaces: false
  1013. path_case: none
  1014. trim_whitespace: false
  1015. alt: ''
  1016. rel: ''
  1017. link_class: ''
  1018. prefix: ''
  1019. suffix: ''
  1020. target: ''
  1021. nl2br: false
  1022. max_length: 0
  1023. word_boundary: true
  1024. ellipsis: true
  1025. more_link: false
  1026. more_link_text: ''
  1027. more_link_path: ''
  1028. strip_tags: false
  1029. trim: false
  1030. preserve_tags: ''
  1031. html: false
  1032. element_type: ''
  1033. element_class: ''
  1034. element_label_type: ''
  1035. element_label_class: ''
  1036. element_label_colon: true
  1037. element_wrapper_type: ''
  1038. element_wrapper_class: ''
  1039. element_default_classes: true
  1040. empty: ''
  1041. hide_empty: false
  1042. empty_zero: false
  1043. hide_alter_empty: true
  1044. click_sort_column: target_id
  1045. type: entity_reference_label
  1046. settings:
  1047. link: true
  1048. group_column: target_id
  1049. group_columns: { }
  1050. group_rows: true
  1051. delta_limit: 0
  1052. delta_offset: 0
  1053. delta_reversed: false
  1054. delta_first_last: false
  1055. multi_type: separator
  1056. separator: '<br/>'
  1057. field_api_classes: false
  1058. plugin_id: field
  1059. field_samples:
  1060. id: field_samples
  1061. table: node__field_samples
  1062. field: field_samples
  1063. relationship: none
  1064. group_type: group
  1065. admin_label: ''
  1066. label: Samples
  1067. exclude: false
  1068. alter:
  1069. alter_text: false
  1070. text: ''
  1071. make_link: false
  1072. path: ''
  1073. absolute: false
  1074. external: false
  1075. replace_spaces: false
  1076. path_case: none
  1077. trim_whitespace: false
  1078. alt: ''
  1079. rel: ''
  1080. link_class: ''
  1081. prefix: ''
  1082. suffix: ''
  1083. target: ''
  1084. nl2br: false
  1085. max_length: 0
  1086. word_boundary: true
  1087. ellipsis: true
  1088. more_link: false
  1089. more_link_text: ''
  1090. more_link_path: ''
  1091. strip_tags: false
  1092. trim: false
  1093. preserve_tags: ''
  1094. html: false
  1095. element_type: ''
  1096. element_class: ''
  1097. element_label_type: ''
  1098. element_label_class: ''
  1099. element_label_colon: true
  1100. element_wrapper_type: ''
  1101. element_wrapper_class: ''
  1102. element_default_classes: true
  1103. empty: ''
  1104. hide_empty: false
  1105. empty_zero: false
  1106. hide_alter_empty: true
  1107. click_sort_column: location
  1108. type: materio_samples_default_formatter
  1109. settings: { }
  1110. group_column: ''
  1111. group_columns: { }
  1112. group_rows: true
  1113. delta_limit: 0
  1114. delta_offset: 0
  1115. delta_reversed: false
  1116. delta_first_last: false
  1117. multi_type: separator
  1118. separator: '<br/>'
  1119. field_api_classes: false
  1120. plugin_id: field
  1121. field_workflow:
  1122. id: field_workflow
  1123. table: node__field_workflow
  1124. field: field_workflow
  1125. relationship: none
  1126. group_type: group
  1127. admin_label: ''
  1128. label: Workflow
  1129. exclude: false
  1130. alter:
  1131. alter_text: false
  1132. text: ''
  1133. make_link: false
  1134. path: ''
  1135. absolute: false
  1136. external: false
  1137. replace_spaces: false
  1138. path_case: none
  1139. trim_whitespace: false
  1140. alt: ''
  1141. rel: ''
  1142. link_class: ''
  1143. prefix: ''
  1144. suffix: ''
  1145. target: ''
  1146. nl2br: false
  1147. max_length: 0
  1148. word_boundary: true
  1149. ellipsis: true
  1150. more_link: false
  1151. more_link_text: ''
  1152. more_link_path: ''
  1153. strip_tags: false
  1154. trim: false
  1155. preserve_tags: ''
  1156. html: false
  1157. element_type: ''
  1158. element_class: ''
  1159. element_label_type: ''
  1160. element_label_class: ''
  1161. element_label_colon: true
  1162. element_wrapper_type: ''
  1163. element_wrapper_class: ''
  1164. element_default_classes: true
  1165. empty: ''
  1166. hide_empty: false
  1167. empty_zero: false
  1168. hide_alter_empty: true
  1169. click_sort_column: value
  1170. type: list_default
  1171. settings: { }
  1172. group_column: value
  1173. group_columns: { }
  1174. group_rows: true
  1175. delta_limit: 0
  1176. delta_offset: 0
  1177. delta_reversed: false
  1178. delta_first_last: false
  1179. multi_type: separator
  1180. separator: ', '
  1181. field_api_classes: false
  1182. plugin_id: field
  1183. field_migration:
  1184. id: field_migration
  1185. table: node__field_migration
  1186. field: field_migration
  1187. relationship: none
  1188. group_type: group
  1189. admin_label: ''
  1190. label: Migration
  1191. exclude: false
  1192. alter:
  1193. alter_text: false
  1194. text: ''
  1195. make_link: false
  1196. path: ''
  1197. absolute: false
  1198. external: false
  1199. replace_spaces: false
  1200. path_case: none
  1201. trim_whitespace: false
  1202. alt: ''
  1203. rel: ''
  1204. link_class: ''
  1205. prefix: ''
  1206. suffix: ''
  1207. target: ''
  1208. nl2br: false
  1209. max_length: 0
  1210. word_boundary: true
  1211. ellipsis: true
  1212. more_link: false
  1213. more_link_text: ''
  1214. more_link_path: ''
  1215. strip_tags: false
  1216. trim: false
  1217. preserve_tags: ''
  1218. html: false
  1219. element_type: ''
  1220. element_class: ''
  1221. element_label_type: ''
  1222. element_label_class: ''
  1223. element_label_colon: true
  1224. element_wrapper_type: ''
  1225. element_wrapper_class: ''
  1226. element_default_classes: true
  1227. empty: ''
  1228. hide_empty: false
  1229. empty_zero: false
  1230. hide_alter_empty: true
  1231. click_sort_column: value
  1232. type: list_default
  1233. settings: { }
  1234. group_column: value
  1235. group_columns: { }
  1236. group_rows: true
  1237. delta_limit: 0
  1238. delta_offset: 0
  1239. delta_reversed: false
  1240. delta_first_last: false
  1241. multi_type: separator
  1242. separator: ', '
  1243. field_api_classes: false
  1244. plugin_id: field
  1245. is_locked:
  1246. id: is_locked
  1247. table: content_lock
  1248. field: is_locked
  1249. relationship: none
  1250. group_type: group
  1251. admin_label: ''
  1252. label: 'Is Locked'
  1253. exclude: false
  1254. alter:
  1255. alter_text: false
  1256. text: ''
  1257. make_link: false
  1258. path: ''
  1259. absolute: false
  1260. external: false
  1261. replace_spaces: false
  1262. path_case: none
  1263. trim_whitespace: false
  1264. alt: ''
  1265. rel: ''
  1266. link_class: ''
  1267. prefix: ''
  1268. suffix: ''
  1269. target: ''
  1270. nl2br: false
  1271. max_length: 0
  1272. word_boundary: true
  1273. ellipsis: true
  1274. more_link: false
  1275. more_link_text: ''
  1276. more_link_path: ''
  1277. strip_tags: false
  1278. trim: false
  1279. preserve_tags: ''
  1280. html: false
  1281. element_type: ''
  1282. element_class: ''
  1283. element_label_type: ''
  1284. element_label_class: ''
  1285. element_label_colon: true
  1286. element_wrapper_type: ''
  1287. element_wrapper_class: ''
  1288. element_default_classes: true
  1289. empty: ''
  1290. hide_empty: false
  1291. empty_zero: false
  1292. hide_alter_empty: true
  1293. type: yes-no
  1294. type_custom_true: ''
  1295. type_custom_false: ''
  1296. not: false
  1297. plugin_id: boolean
  1298. field_memo:
  1299. id: field_memo
  1300. table: node__field_memo
  1301. field: field_memo
  1302. relationship: none
  1303. group_type: group
  1304. admin_label: ''
  1305. label: Memo
  1306. exclude: false
  1307. alter:
  1308. alter_text: false
  1309. text: ''
  1310. make_link: false
  1311. path: ''
  1312. absolute: false
  1313. external: false
  1314. replace_spaces: false
  1315. path_case: none
  1316. trim_whitespace: false
  1317. alt: ''
  1318. rel: ''
  1319. link_class: ''
  1320. prefix: ''
  1321. suffix: ''
  1322. target: ''
  1323. nl2br: false
  1324. max_length: 300
  1325. word_boundary: true
  1326. ellipsis: true
  1327. more_link: false
  1328. more_link_text: ''
  1329. more_link_path: ''
  1330. strip_tags: false
  1331. trim: true
  1332. preserve_tags: ''
  1333. html: false
  1334. element_type: ''
  1335. element_class: ''
  1336. element_label_type: ''
  1337. element_label_class: ''
  1338. element_label_colon: true
  1339. element_wrapper_type: ''
  1340. element_wrapper_class: ''
  1341. element_default_classes: true
  1342. empty: ''
  1343. hide_empty: false
  1344. empty_zero: false
  1345. hide_alter_empty: true
  1346. click_sort_column: value
  1347. type: basic_string
  1348. settings: { }
  1349. group_column: value
  1350. group_columns: { }
  1351. group_rows: true
  1352. delta_limit: 0
  1353. delta_offset: 0
  1354. delta_reversed: false
  1355. delta_first_last: false
  1356. multi_type: separator
  1357. separator: ', '
  1358. field_api_classes: false
  1359. plugin_id: field
  1360. changed:
  1361. id: changed
  1362. table: node_field_data
  1363. field: changed
  1364. relationship: none
  1365. group_type: group
  1366. admin_label: ''
  1367. label: Changed
  1368. exclude: false
  1369. alter:
  1370. alter_text: false
  1371. text: ''
  1372. make_link: false
  1373. path: ''
  1374. absolute: false
  1375. external: false
  1376. replace_spaces: false
  1377. path_case: none
  1378. trim_whitespace: false
  1379. alt: ''
  1380. rel: ''
  1381. link_class: ''
  1382. prefix: ''
  1383. suffix: ''
  1384. target: ''
  1385. nl2br: false
  1386. max_length: 0
  1387. word_boundary: true
  1388. ellipsis: true
  1389. more_link: false
  1390. more_link_text: ''
  1391. more_link_path: ''
  1392. strip_tags: false
  1393. trim: false
  1394. preserve_tags: ''
  1395. html: false
  1396. element_type: ''
  1397. element_class: ''
  1398. element_label_type: ''
  1399. element_label_class: ''
  1400. element_label_colon: true
  1401. element_wrapper_type: ''
  1402. element_wrapper_class: ''
  1403. element_default_classes: true
  1404. empty: ''
  1405. hide_empty: false
  1406. empty_zero: false
  1407. hide_alter_empty: true
  1408. click_sort_column: value
  1409. type: timestamp
  1410. settings:
  1411. date_format: html_date
  1412. custom_date_format: ''
  1413. timezone: ''
  1414. group_column: value
  1415. group_columns: { }
  1416. group_rows: true
  1417. delta_limit: 0
  1418. delta_offset: 0
  1419. delta_reversed: false
  1420. delta_first_last: false
  1421. multi_type: separator
  1422. separator: ', '
  1423. field_api_classes: false
  1424. entity_type: node
  1425. entity_field: changed
  1426. plugin_id: field
  1427. filters:
  1428. type:
  1429. id: type
  1430. table: node_field_data
  1431. field: type
  1432. relationship: none
  1433. group_type: group
  1434. admin_label: ''
  1435. operator: in
  1436. value: { }
  1437. group: 1
  1438. exposed: true
  1439. expose:
  1440. operator_id: type_op
  1441. label: 'Content type'
  1442. description: ''
  1443. use_operator: false
  1444. operator: type_op
  1445. identifier: type
  1446. required: false
  1447. remember: false
  1448. multiple: false
  1449. remember_roles:
  1450. authenticated: authenticated
  1451. anonymous: '0'
  1452. admin: '0'
  1453. root: '0'
  1454. user: '0'
  1455. reduce: false
  1456. is_grouped: false
  1457. group_info:
  1458. label: ''
  1459. description: ''
  1460. identifier: ''
  1461. optional: true
  1462. widget: select
  1463. multiple: false
  1464. remember: false
  1465. default_group: All
  1466. default_group_multiple: { }
  1467. group_items: { }
  1468. entity_type: node
  1469. entity_field: type
  1470. plugin_id: bundle
  1471. title:
  1472. id: title
  1473. table: node_field_data
  1474. field: title
  1475. relationship: none
  1476. group_type: group
  1477. admin_label: ''
  1478. operator: contains
  1479. value: ''
  1480. group: 1
  1481. exposed: true
  1482. expose:
  1483. operator_id: title_op
  1484. label: Title
  1485. description: ''
  1486. use_operator: false
  1487. operator: title_op
  1488. identifier: title
  1489. required: false
  1490. remember: false
  1491. multiple: false
  1492. remember_roles:
  1493. authenticated: authenticated
  1494. anonymous: '0'
  1495. admin: '0'
  1496. root: '0'
  1497. user: '0'
  1498. placeholder: ''
  1499. is_grouped: false
  1500. group_info:
  1501. label: ''
  1502. description: ''
  1503. identifier: ''
  1504. optional: true
  1505. widget: select
  1506. multiple: false
  1507. remember: false
  1508. default_group: All
  1509. default_group_multiple: { }
  1510. group_items: { }
  1511. entity_type: node
  1512. entity_field: title
  1513. plugin_id: string
  1514. field_manufacturer_target_id:
  1515. id: field_manufacturer_target_id
  1516. table: node__field_manufacturer
  1517. field: field_manufacturer_target_id
  1518. relationship: none
  1519. group_type: group
  1520. admin_label: ''
  1521. operator: or
  1522. value: { }
  1523. group: 1
  1524. exposed: true
  1525. expose:
  1526. operator_id: field_manufacturer_target_id_op
  1527. label: Manufacturer
  1528. description: ''
  1529. use_operator: false
  1530. operator: field_manufacturer_target_id_op
  1531. identifier: field_manufacturer_target_id
  1532. required: false
  1533. remember: false
  1534. multiple: false
  1535. remember_roles:
  1536. authenticated: authenticated
  1537. anonymous: '0'
  1538. admin: '0'
  1539. root: '0'
  1540. user: '0'
  1541. reduce: false
  1542. is_grouped: false
  1543. group_info:
  1544. label: ''
  1545. description: ''
  1546. identifier: ''
  1547. optional: true
  1548. widget: select
  1549. multiple: false
  1550. remember: false
  1551. default_group: All
  1552. default_group_multiple: { }
  1553. group_items: { }
  1554. reduce_duplicates: false
  1555. type: textfield
  1556. limit: true
  1557. vid: company
  1558. hierarchy: false
  1559. error_message: true
  1560. parent: 0
  1561. level_labels: ''
  1562. force_deepest: false
  1563. plugin_id: taxonomy_index_tid
  1564. field_distributor_target_id:
  1565. id: field_distributor_target_id
  1566. table: node__field_distributor
  1567. field: field_distributor_target_id
  1568. relationship: none
  1569. group_type: group
  1570. admin_label: ''
  1571. operator: or
  1572. value: { }
  1573. group: 1
  1574. exposed: true
  1575. expose:
  1576. operator_id: field_distributor_target_id_op
  1577. label: Distributor
  1578. description: ''
  1579. use_operator: false
  1580. operator: field_distributor_target_id_op
  1581. identifier: field_distributor_target_id
  1582. required: false
  1583. remember: false
  1584. multiple: false
  1585. remember_roles:
  1586. authenticated: authenticated
  1587. anonymous: '0'
  1588. admin: '0'
  1589. root: '0'
  1590. user: '0'
  1591. reduce: false
  1592. is_grouped: false
  1593. group_info:
  1594. label: ''
  1595. description: ''
  1596. identifier: ''
  1597. optional: true
  1598. widget: select
  1599. multiple: false
  1600. remember: false
  1601. default_group: All
  1602. default_group_multiple: { }
  1603. group_items: { }
  1604. reduce_duplicates: false
  1605. type: textfield
  1606. limit: true
  1607. vid: company
  1608. hierarchy: false
  1609. error_message: true
  1610. parent: 0
  1611. level_labels: ''
  1612. force_deepest: false
  1613. plugin_id: taxonomy_index_tid
  1614. field_memo_value:
  1615. id: field_memo_value
  1616. table: node__field_memo
  1617. field: field_memo_value
  1618. relationship: none
  1619. group_type: group
  1620. admin_label: ''
  1621. operator: contains
  1622. value: ''
  1623. group: 1
  1624. exposed: true
  1625. expose:
  1626. operator_id: field_memo_value_op
  1627. label: Memo
  1628. description: ''
  1629. use_operator: false
  1630. operator: field_memo_value_op
  1631. identifier: field_memo_value
  1632. required: false
  1633. remember: false
  1634. multiple: false
  1635. remember_roles:
  1636. authenticated: authenticated
  1637. anonymous: '0'
  1638. admin: '0'
  1639. root: '0'
  1640. user: '0'
  1641. placeholder: ''
  1642. is_grouped: false
  1643. group_info:
  1644. label: ''
  1645. description: ''
  1646. identifier: ''
  1647. optional: true
  1648. widget: select
  1649. multiple: false
  1650. remember: false
  1651. default_group: All
  1652. default_group_multiple: { }
  1653. group_items: { }
  1654. plugin_id: string
  1655. field_migration_value:
  1656. id: field_migration_value
  1657. table: node__field_migration
  1658. field: field_migration_value
  1659. relationship: none
  1660. group_type: group
  1661. admin_label: ''
  1662. operator: or
  1663. value: { }
  1664. group: 1
  1665. exposed: true
  1666. expose:
  1667. operator_id: field_migration_value_op
  1668. label: Migration
  1669. description: ''
  1670. use_operator: false
  1671. operator: field_migration_value_op
  1672. identifier: field_migration_value
  1673. required: false
  1674. remember: false
  1675. multiple: false
  1676. remember_roles:
  1677. authenticated: authenticated
  1678. anonymous: '0'
  1679. admin: '0'
  1680. root: '0'
  1681. user: '0'
  1682. reduce: false
  1683. is_grouped: false
  1684. group_info:
  1685. label: ''
  1686. description: ''
  1687. identifier: ''
  1688. optional: true
  1689. widget: select
  1690. multiple: false
  1691. remember: false
  1692. default_group: All
  1693. default_group_multiple: { }
  1694. group_items: { }
  1695. reduce_duplicates: false
  1696. plugin_id: workflow_state
  1697. field_workflow_value:
  1698. id: field_workflow_value
  1699. table: node__field_workflow
  1700. field: field_workflow_value
  1701. relationship: none
  1702. group_type: group
  1703. admin_label: ''
  1704. operator: or
  1705. value: { }
  1706. group: 1
  1707. exposed: true
  1708. expose:
  1709. operator_id: field_workflow_value_op
  1710. label: Workflow
  1711. description: ''
  1712. use_operator: false
  1713. operator: field_workflow_value_op
  1714. identifier: field_workflow_value
  1715. required: false
  1716. remember: false
  1717. multiple: false
  1718. remember_roles:
  1719. authenticated: authenticated
  1720. anonymous: '0'
  1721. admin: '0'
  1722. root: '0'
  1723. user: '0'
  1724. reduce: false
  1725. is_grouped: false
  1726. group_info:
  1727. label: ''
  1728. description: ''
  1729. identifier: ''
  1730. optional: true
  1731. widget: select
  1732. multiple: false
  1733. remember: false
  1734. default_group: All
  1735. default_group_multiple: { }
  1736. group_items: { }
  1737. reduce_duplicates: false
  1738. plugin_id: workflow_state
  1739. select_translation:
  1740. id: select_translation
  1741. table: node_field_data
  1742. field: select_translation
  1743. relationship: none
  1744. group_type: group
  1745. admin_label: ''
  1746. operator: '='
  1747. value: default
  1748. group: 1
  1749. exposed: false
  1750. expose:
  1751. operator_id: ''
  1752. label: ''
  1753. description: ''
  1754. use_operator: false
  1755. operator: ''
  1756. identifier: ''
  1757. required: false
  1758. remember: false
  1759. multiple: false
  1760. remember_roles:
  1761. authenticated: authenticated
  1762. is_grouped: false
  1763. group_info:
  1764. label: ''
  1765. description: ''
  1766. identifier: ''
  1767. optional: true
  1768. widget: select
  1769. multiple: false
  1770. remember: false
  1771. default_group: All
  1772. default_group_multiple: { }
  1773. group_items: { }
  1774. priorities: ''
  1775. default_language_only: 0
  1776. include_content_with_unpublished_translation: 0
  1777. entity_type: node
  1778. plugin_id: select_translation_filter
  1779. sorts:
  1780. changed:
  1781. id: changed
  1782. table: node_field_data
  1783. field: changed
  1784. relationship: none
  1785. group_type: group
  1786. admin_label: ''
  1787. order: DESC
  1788. exposed: false
  1789. expose:
  1790. label: ''
  1791. granularity: second
  1792. entity_type: node
  1793. entity_field: changed
  1794. plugin_id: date
  1795. title: 'Admin Nodes'
  1796. header:
  1797. result:
  1798. id: result
  1799. table: views
  1800. field: result
  1801. relationship: none
  1802. group_type: group
  1803. admin_label: ''
  1804. empty: false
  1805. content: 'Displaying @start - @end of @total'
  1806. plugin_id: result
  1807. footer: { }
  1808. empty: { }
  1809. relationships: { }
  1810. arguments: { }
  1811. display_extenders:
  1812. views_ef_fieldset: { }
  1813. filter_groups:
  1814. operator: AND
  1815. groups:
  1816. 1: AND
  1817. rendering_language: '***LANGUAGE_entity_translation***'
  1818. cache_metadata:
  1819. max-age: 0
  1820. contexts:
  1821. - 'languages:language_content'
  1822. - 'languages:language_interface'
  1823. - url
  1824. - url.query_args
  1825. - user
  1826. - 'user.node_grants:view'
  1827. - user.roles
  1828. tags:
  1829. - 'config:field.storage.node.field_distributor'
  1830. - 'config:field.storage.node.field_linked_breves'
  1831. - 'config:field.storage.node.field_linked_materials'
  1832. - 'config:field.storage.node.field_manufacturer'
  1833. - 'config:field.storage.node.field_materiau_images'
  1834. - 'config:field.storage.node.field_memo'
  1835. - 'config:field.storage.node.field_migration'
  1836. - 'config:field.storage.node.field_reference'
  1837. - 'config:field.storage.node.field_samples'
  1838. - 'config:field.storage.node.field_tags'
  1839. - 'config:field.storage.node.field_thesaurus'
  1840. - 'config:field.storage.node.field_visuel'
  1841. - 'config:field.storage.node.field_workflow'
  1842. page_1:
  1843. display_plugin: page
  1844. id: page_1
  1845. display_title: Page
  1846. position: 1
  1847. display_options:
  1848. display_extenders:
  1849. views_ef_fieldset:
  1850. views_ef_fieldset:
  1851. enabled: 1
  1852. options:
  1853. sort:
  1854. root:
  1855. container_type: details
  1856. title: Filters
  1857. description: ''
  1858. open: '1'
  1859. weight: '0'
  1860. id: root
  1861. pid: ''
  1862. depth: '0'
  1863. type: container
  1864. container-0:
  1865. container_type: container
  1866. title: ''
  1867. description: ''
  1868. open: '1'
  1869. weight: '-23'
  1870. id: container-0
  1871. pid: root
  1872. depth: '1'
  1873. type: container
  1874. type:
  1875. weight: '-23'
  1876. id: type
  1877. pid: container-0
  1878. depth: '2'
  1879. type: filter
  1880. langcode_1:
  1881. weight: '-22'
  1882. id: langcode_1
  1883. pid: container-0
  1884. depth: '2'
  1885. type: filter
  1886. langcode:
  1887. weight: '-21'
  1888. id: langcode
  1889. pid: container-0
  1890. depth: '2'
  1891. type: filter
  1892. title:
  1893. weight: '-20'
  1894. id: title
  1895. pid: container-0
  1896. depth: '2'
  1897. type: filter
  1898. field_memo_value:
  1899. weight: '-19'
  1900. id: field_memo_value
  1901. pid: container-0
  1902. depth: '2'
  1903. type: filter
  1904. container-1:
  1905. container_type: container
  1906. title: ''
  1907. description: ''
  1908. open: '1'
  1909. weight: '-20'
  1910. id: container-1
  1911. pid: root
  1912. depth: '1'
  1913. type: container
  1914. field_manufacturer_target_id:
  1915. weight: '-21'
  1916. id: field_manufacturer_target_id
  1917. pid: container-1
  1918. depth: '2'
  1919. type: filter
  1920. field_distributor_target_id:
  1921. weight: '-20'
  1922. id: field_distributor_target_id
  1923. pid: container-1
  1924. depth: '2'
  1925. type: filter
  1926. container-2:
  1927. container_type: container
  1928. title: ''
  1929. description: ''
  1930. open: '1'
  1931. weight: '-19'
  1932. id: container-2
  1933. pid: root
  1934. depth: '1'
  1935. type: container
  1936. field_workflow_value:
  1937. weight: '-21'
  1938. id: field_workflow_value
  1939. pid: container-2
  1940. depth: '2'
  1941. type: filter
  1942. field_migration_value:
  1943. weight: '-20'
  1944. id: field_migration_value
  1945. pid: container-2
  1946. depth: '2'
  1947. type: filter
  1948. container-3:
  1949. container_type: container
  1950. title: ''
  1951. description: ''
  1952. weight: '-18'
  1953. open: 0
  1954. id: container-3
  1955. pid: root
  1956. depth: '1'
  1957. type: container
  1958. submit:
  1959. weight: '-21'
  1960. id: submit
  1961. pid: container-3
  1962. depth: '2'
  1963. type: buttons
  1964. reset:
  1965. weight: '-20'
  1966. id: reset
  1967. pid: container-3
  1968. depth: '2'
  1969. type: buttons
  1970. container-4:
  1971. container_type: details
  1972. title: 'Container 4'
  1973. description: ''
  1974. weight: '-17'
  1975. open: 0
  1976. id: container-4
  1977. pid: root
  1978. depth: '1'
  1979. type: container
  1980. container-5:
  1981. container_type: details
  1982. title: 'Container 5'
  1983. description: ''
  1984. weight: '-16'
  1985. open: 0
  1986. id: container-5
  1987. pid: root
  1988. depth: '1'
  1989. type: container
  1990. container-6:
  1991. container_type: details
  1992. title: 'Container 6'
  1993. description: ''
  1994. weight: '-15'
  1995. open: 0
  1996. id: container-6
  1997. pid: root
  1998. depth: '1'
  1999. type: container
  2000. container-7:
  2001. container_type: details
  2002. title: 'Container 7'
  2003. description: ''
  2004. weight: '-14'
  2005. open: 0
  2006. id: container-7
  2007. pid: root
  2008. depth: '1'
  2009. type: container
  2010. container-8:
  2011. container_type: details
  2012. title: 'Container 8'
  2013. description: ''
  2014. weight: '-13'
  2015. open: 0
  2016. id: container-8
  2017. pid: root
  2018. depth: '1'
  2019. type: container
  2020. container-9:
  2021. container_type: details
  2022. title: 'Container 9'
  2023. description: ''
  2024. weight: '-12'
  2025. open: 0
  2026. id: container-9
  2027. pid: root
  2028. depth: '1'
  2029. type: container
  2030. container-10:
  2031. container_type: details
  2032. title: 'Container 10'
  2033. description: ''
  2034. weight: '-11'
  2035. open: 0
  2036. id: container-10
  2037. pid: root
  2038. depth: '1'
  2039. type: container
  2040. path: admin/content/nodes
  2041. menu:
  2042. type: tab
  2043. title: Contents
  2044. description: ''
  2045. expanded: false
  2046. parent: ''
  2047. weight: 0
  2048. context: '0'
  2049. menu_name: main
  2050. cache_metadata:
  2051. max-age: 0
  2052. contexts:
  2053. - 'languages:language_content'
  2054. - 'languages:language_interface'
  2055. - url
  2056. - url.query_args
  2057. - user
  2058. - 'user.node_grants:view'
  2059. - user.roles
  2060. tags:
  2061. - 'config:field.storage.node.field_distributor'
  2062. - 'config:field.storage.node.field_linked_breves'
  2063. - 'config:field.storage.node.field_linked_materials'
  2064. - 'config:field.storage.node.field_manufacturer'
  2065. - 'config:field.storage.node.field_materiau_images'
  2066. - 'config:field.storage.node.field_memo'
  2067. - 'config:field.storage.node.field_migration'
  2068. - 'config:field.storage.node.field_reference'
  2069. - 'config:field.storage.node.field_samples'
  2070. - 'config:field.storage.node.field_tags'
  2071. - 'config:field.storage.node.field_thesaurus'
  2072. - 'config:field.storage.node.field_visuel'
  2073. - 'config:field.storage.node.field_workflow'