views.view.simplenews_subscribers.yml 60 KB

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