Blame view

sources/apps/contacts/appinfo/routes.php 1.21 KB
03e52840d   Kload   Init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
  <?php
  /**
   * @author Thomas Tanghus
   * Copyright (c) 2013 Thomas Tanghus (thomas@tanghus.net)
   * This file is licensed under the Affero General Public License version 3 or
   * later.
   * See the COPYING-README file.
   */
  namespace OCA\Contacts;
  
  use OCA\Contacts\Controller\ImportController;
  
  $this->create('contacts_import_upload', 'addressbook/{addressbookid}/import/upload')
  	->post()
  	->action(
  		function($params) {
  			session_write_close();
  			$controller = new ImportController($params);
  			$response = $controller->upload();
  			print $response->render();
  		}
  	)
  	->requirements(array('addressbookid'));
  
  $this->create('contacts_import_start', 'addressbook/{addressbookid}/import/start')
  	->post()
  	->action(
  		function($params) {
  			session_write_close();
  			$controller = new ImportController($params);
  			$response = $controller->start();
  			print $response->render();
  		}
  	)
  	->requirements(array('addressbookid'));
  
  $this->create('contacts_import_status', 'addressbook/{addressbookid}/import/status')
  	->get()
  	->action(
  		function($params) {
  			session_write_close();
  			$controller = new ImportController($params);
  			$response = $controller->status();
  			print $response->render();
  		}
  	)
  	->requirements(array('addressbookid'));