add types rss

This commit is contained in:
Andrey Kuvshinov
2020-04-28 18:41:37 +03:00
parent 16fe555018
commit 1a8e22209d
3 changed files with 22 additions and 3 deletions

View File

@@ -79,3 +79,19 @@ function addcard($id, $date) {
}
function mybooks_kuri($clienthash, $page = 1){
$client = api_client_kuri($clienthash);
if (!$client) {
echo 'Пользователь не найден';
return;
}
$books = clientbooks_kuri($client['client_id']);
print_r($books);
}