blob: 47ad47e39b228547f3761765070edff7ccd80fce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
/**
* Elgg installation
* Various functions to assist with installing and upgrading the system
*
* @package Elgg.Core
* @subpackage Installation
*/
// @todo - remove this internal function as soon as it is pulled from elgg_view()
function is_installed() {
global $CONFIG;
return $CONFIG->installed;
}
|