15 lines
311 B
PHP
Executable File
15 lines
311 B
PHP
Executable File
<?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);
|