15 lines
311 B
Plaintext
15 lines
311 B
Plaintext
|
<?php
|
||
|
|
||
|
$paging = isset($this->Paginator->options['url']) ? $this->Paginator->options['url'] : null;
|
||
|
|
||
|
$formatted = array(
|
||
|
'user' => $user['User']['username'],
|
||
|
'list' => array(),
|
||
|
'paging' => $paging,
|
||
|
);
|
||
|
foreach ($user['Item'] as $item) {
|
||
|
$formatted['list'][] = $item['name'];
|
||
|
}
|
||
|
|
||
|
echo json_encode($formatted);
|