views.view.simplenews_subscribers.yml 58 KB

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