cccb29df425966ce91907c032add836d75f44805
[glcas.git] / lib / plugins / yumproxy.php
1 <?php
2 global $BASE_URLS;
3
4 $BASE_URLS["yp"]["base"] = "yp"; // ap for apt-proxy
5 $BASE_URLS["yp"]["function"] = "yp_contentUrls"; // the page builder function for us
6
7
8 function yp_contentPane()
9 {
10         echo "i am a yp content pane<br>";
11 }
12
13 function yp_contentUrls()
14 {
15         $calls["needs_base_page"] = true;
16         $calls["content_pane_function"] = "yp_contentPane";
17         
18         return $calls;
19 }
20 ?>