forked from codinghamster/planfix-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.php
55 lines (43 loc) · 1.15 KB
/
example.php
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
48
49
50
51
52
53
54
55
<?php
require 'Planfix_API.php';
$PF = new Planfix_API(array('apiKey' => 'YOUR_API_KEY', 'apiSecret' => 'YOUR_API_SECRET'));
$PF->setAccount('YOUR_ACCOUNT');
session_start();
if (empty($_SESSION['planfixSid'])) {
$PF->setUser(array('login' => 'YOUR_LOGIN', 'password' => 'YOUR_PASSWORD'));
$PF->authenticate();
$_SESSION['planfixSid'] = $PF->getSid();
}
$PF->setSid($_SESSION['planfixSid']);
$method = 'client.getList';
$params = array(
'user' => array(
array('id' => 1)
),
'pageCurrent' => 1
);
$clients = $PF->api($method, $params);
echo '<pre>'.print_r($clients, 1).'</pre>';
$batch = array(
array(
'method' => 'project.getList',
'params' => array(
'user' => array(
array('id' => 1)
),
'pageCurrent' => 1
)
),
array(
'method' => 'task.getList',
'params' => array(
'user' => array(
array('id' => 1)
),
'pageCurrent' => 1
)
)
);
list($projects, $tasks) = $PF->api($batch);
echo '<pre>'.print_r($tasks, 1).'</pre>';
echo '<pre>'.print_r($projects, 1).'</pre>';