You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

automatic_addressbook_backend.php 618B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Automatic addressbook backend
  4. *
  5. * Minimal backend for Automatic Addressbook
  6. *
  7. * @version 0.4
  8. * @author Jocelyn Delalande (slightly modified by Roland 'rosali' Liebl)
  9. * @author Sebastien Blaisot <sebastien@blaisot.org>
  10. * @website https://github.com/sblaisot/automatic_addressbook
  11. * @licence http://www.gnu.org/licenses/gpl-3.0.html GNU GPLv3+
  12. */
  13. class automatic_addressbook_backend extends rcube_contacts
  14. {
  15. function __construct($dbconn, $user)
  16. {
  17. parent::__construct($dbconn, $user);
  18. $this->db_name = rcmail::get_instance()->db->table_name('collected_contacts');
  19. }
  20. }