Wrap text
Report abuse
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
class SyncleonViewItems extends JView {
public function display($tpl = null) {
JFactory::getDocument()->setMimeEncoding("application/json");
$todo_details = $this->get('Detail');
echo json_encode($todo_details);
}
}
|