예제 #1
0
 /**
  * get_module_url
  *
  */
 public static function get_module_url()
 {
     $absolute_url = LoadUtility::full_url($_SERVER);
     //echo 'absolute_url ' . $absolute_url . "<br>";
     //ge thepage root
     $slash = explode('?', $absolute_url);
     $current_filename = $slash[count($slash) - 1];
     $host_url = str_replace($current_filename, "", $absolute_url);
     //echo 'host_url ' . $host_url . "<br>";
     return $host_url;
 }