Zum Inhalt springen

Roundcube/Plugin/swipe: Unterschied zwischen den Versionen

Aus Foxwiki
K Textersetzung - „</blockquote>“ durch „“
Keine Bearbeitungszusammenfassung
 
(3 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
== swipe ==
'''Roundcube/Plugin/swipe''' - adds left/right/down swipe actions
* Installed via <code>composer</code> johndoh/swipe
 
== Beschreibung ==
* Installed via [[composer]] johndoh/swipe
* Plugin name: ''swipe''
* Plugin name: ''swipe''


<blockquote>This plugin adds left/right/down swipe actions to entries in the the message list on touch devices (tables/phones).Unfortunately this plugins does not have a config file of its own, so we have to add the configuration to the main RC config file.  
This plugin adds left/right/down swipe actions to entries in the the message list on touch devices (tables/phones).
 
This plugins does not have a config file of its own, so we have to add the configuration to the main RC config file.  


This is how I configured it for myself. Look at the README file to find the list of all actions available.
This is how I configured it for myself. Look at the README file to find the list of all actions available.
Zeile 18: Zeile 22:
   ]  
   ]  
  ];
  ];
[[Kategorie:Roundcube/Plugin]]

Aktuelle Version vom 8. Juli 2026, 01:18 Uhr

Roundcube/Plugin/swipe - adds left/right/down swipe actions

Beschreibung

  • Installed via composer johndoh/swipe
  • Plugin name: swipe

This plugin adds left/right/down swipe actions to entries in the the message list on touch devices (tables/phones).

This plugins does not have a config file of its own, so we have to add the configuration to the main RC config file.

This is how I configured it for myself. Look at the README file to find the list of all actions available.

$config['swipe_actions'] = [ 
 'messagelist' => [ 
   'left'  => 'delete', 
   'right' => 'reply-all', 
   'down'  => 'checkmail' 
 ], 
 'contactlist' => [ 
   'left'  => 'compose', 
   'right' => 'compose', 
   'down'  => 'vcard_attachments' 
 ] 
];