1
1
Fork 0

more poll stuff ahead of item revamp

This commit is contained in:
Mike Macgirvin 2010-07-18 20:49:10 -07:00
commit 21f0cd206d
8 changed files with 213 additions and 172 deletions

View file

@ -33,6 +33,7 @@ class App {
private $scheme;
private $hostname;
private $path;
private $baseurl;
private $db;
function __construct() {
@ -69,12 +70,20 @@ class App {
}
function get_baseurl($ssl = false) {
return (($ssl) ? 'https' : $this->scheme) . "://" . $this->hostname
if(strlen($this->baseurl))
return $this->baseurl;
$this->baseurl = (($ssl) ? 'https' : $this->scheme) . "://" . $this->hostname
. ((isset($this->path) && strlen($this->path))
? '/' . $this->path : '' );
return $this->baseurl;
}
function set_baseurl($url) {
$this->baseurl = $url;
}
function set_path($p) {
$this->path = ltrim(trim($p),'/');
}
@ -330,6 +339,11 @@ function notice($s) {
}}
if(! function_exists('get_max_import_size')) {
function get_max_import_size() {
global $a;
return ((x($a->config,'max_import_size')) ? $a->config['max_import_size'] : 0 );
}}
if(! function_exists('xmlify')) {
function xmlify($str) {