ViewJson.class.php in CSS & JavaScript Toolbox 11.3, at framework/ServicesFW/ViewJson.class.php
| 1 | <?php |
| 2 | /*** |
| 3 | * |
| 4 | */ |
| 5 | |
| 6 | /** |
| 7 | * |
| 8 | */ |
| 9 | class CJTServicesMVCViewJson |
| 10 | { |
| 11 | |
| 12 | /** |
| 13 | * put your comment there... |
| 14 | * |
| 15 | */ |
| 16 | public function dispatch() {} |
| 17 | |
| 18 | /** |
| 19 | * put your comment there... |
| 20 | * |
| 21 | */ |
| 22 | public function __toString() |
| 23 | { |
| 24 | |
| 25 | $data = get_object_vars( $this ); |
| 26 | |
| 27 | return json_encode( $data ); |
| 28 | } |
| 29 | |
| 30 | } |
| 31 |