views.view.admin_nodes.yml 64 KB

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