editaddressbook.php 481 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Copyright (c) 2011 Bart Visscher <bartv@thisnet.nl>
  4. * This file is licensed under the Affero General Public License version 3 or
  5. * later.
  6. * See the COPYING-README file.
  7. */
  8. OCP\JSON::checkLoggedIn();
  9. OCP\JSON::checkAppEnabled('contacts');
  10. $addressbook = OC_Contacts_App::getAddressbook($_GET['bookid']);
  11. $tmpl = new OCP\Template("contacts", "part.editaddressbook");
  12. $tmpl->assign('new', false);
  13. $tmpl->assign('addressbook', $addressbook);
  14. $tmpl->printPage();
  15. ?>