SHOW:
|
|
- or go back to the newest paste.
| 1 | - | public function renderUsersLinksJson($userid){
|
| 1 | + | public function renderUsersLinksJson($userid) |
| 2 | - | $data=$this->userLinksTable->listUserLinks($userid)->fetchPairs('id'); //select
|
| 2 | + | {
|
| 3 | - | $this->payload->list=$data; |
| 3 | + | $data = $this->userLinksTable->listUserLinks($userid)->fetchPairs('id'); //select
|
| 4 | - | $this->sendPayload(); |
| 4 | + | foreach ($data as $row) {
|
| 5 | - | |
| 5 | + | $this->payload->list[] = $row->toArray(); |
| 6 | } | |
| 7 | $this->sendPayload(); | |
| 8 | } |