summaryrefslogtreecommitdiffstats
path: root/admin/survey/classes/class.GetSiteUrl.php
blob: a4c964a359d549f328b3e4d190bf438eda88bc2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/** 
 *  Julij 2018
 * 
 * Pridobi site url
 * 
 * @author Patrik Pucer
 */
include_once('../survey/definition.php');

class GetSiteUrl
{	
    function __construct() {		
    }

    function ajax() {
		global $site_url;
		echo $site_url;
    }
	
}