index.ctp 312 B

12345678910111213
  1. <?php
  2. $paging = isset($this->Paginator->options['url']) ? $this->Paginator->options['url'] : null;
  3. $formatted = [
  4. 'user' => $user['User']['username'],
  5. 'list' => [],
  6. 'paging' => $paging,
  7. ];
  8. foreach ($user['Item'] as $item) {
  9. $formatted['list'][] = $item['name'];
  10. }
  11. echo json_encode($formatted);