1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php namespace controller;
class Config {
public function getConfig() { $ret = array( 'status' => 1, 'content_endpoint1' => "http://www.google.com", 'data_aggragator_endpoint1' => "http://www.google.com", 'image_base_url' => "http://www.google.com");
return json_encode($ret); } } ?>
|