Drupal modules for browsing and managing Fedora-based digital repositories.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
849 B

13 years ago
<?php
/**
* Basic config should be replaced with a specific implementation
*/
class Configuration
{
private $baseUrl;
private $port;
/**
* Default constructor
* @param type $base_url
* @param type $port
*/
public function __construct($base_url, $port) {
$this->$baseUrl = $base_url;
$this->$port = $port;
}
/**
* Get the base url
* @return type
*/
public function getBaseURL()
{
return $this->$baseUrl;
}
/**
* Set the base url
* @param type $url
*/
public function setBaseURL($url)
{
$this->$baseUrl = $url;
}
/**
* Get the port
* @return type
*/
public function getPort()
{
return $this->$port;
}
/**
* Set the port
* @param type $port
*/
public function setPort($port)
{
$this->$port = $port;
}
}
?>