importdialog.php 433 B

12345678910111213141516
  1. <?php
  2. /**
  3. * Copyright (c) 2012 Georg Ehrke <ownclouddev at georgswebsite dot de>
  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\App::checkAppEnabled('contacts');
  10. $tmpl = new OCP\Template('contacts', 'part.import');
  11. $tmpl->assign('path', $_POST['path']);
  12. $tmpl->assign('filename', $_POST['filename']);
  13. $tmpl->printpage();