Commit | Line | Data |
---|---|---|
7a471619 H |
1 | <?php |
2 | $transport_name='kyberia.sk'; | |
3 | ||
4 | global $transports; | |
5 | ||
cb5cd120 H |
6 | $transports[$transport_name]['get_node_url']=function($id, $protocol='http', $domain='kyberia.sk') { |
7 | return "$protocol://$domain/id/$id"; | |
8 | }; | |
9 | ||
7a471619 H |
10 | $transports[$transport_name]['get_node_content']=function($id, $protocol='http', $domain='kyberia.sk', $content_template='2019721') { |
11 | return file_get_contents("$protocol://$domain/id/$id/$content_template"); | |
12 | }; | |
13 | ||
14 | //echo $transports[$transport_name]['get_node_content'](2019721); //Example | |
15 | ||
16 | unset($transport_name); |