1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2024-12-01 13:24:10 +01:00
OwncloudContactsOfficial/ajax/importdialog.php

16 lines
433 B
PHP
Raw Normal View History

2012-01-15 11:40:32 +01:00
<?php
/**
* Copyright (c) 2012 Georg Ehrke <ownclouddev at georgswebsite dot de>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
2012-05-03 12:23:29 +02:00
OCP\JSON::checkLoggedIn();
2012-05-02 19:08:37 +02:00
OCP\App::checkAppEnabled('contacts');
2012-05-06 23:00:36 +02:00
$tmpl = new OCP\Template('contacts', 'part.import');
2012-01-15 11:40:32 +01:00
$tmpl->assign('path', $_POST['path']);
$tmpl->assign('filename', $_POST['filename']);
$tmpl->printpage();