Your IP : 172.69.59.18


Current Path : /var/www/element/data/www/wiki.element.ru/maintenance/
Upload File :
Current File : /var/www/element/data/www/wiki.element.ru/maintenance/Site.php

<?php
/**
 * @todo document
 * @ingroup Maintenance
 */
class Site {
	var $suffix, $lateral, $url;

	function __construct( $s, $l, $u ) {
		$this->suffix = $s;
		$this->lateral = $l;
		$this->url = $u;
	}

	function getURL( $lang, $urlprotocol ) {
		$xlang = str_replace( '_', '-', $lang );
		return "$urlprotocol//$xlang.{$this->url}/wiki/\$1";
	}
}