diff options
| author | Sem <sembrestels@riseup.net> | 2012-04-25 19:09:22 +0200 | 
|---|---|---|
| committer | Sem <sembrestels@riseup.net> | 2012-04-25 19:09:22 +0200 | 
| commit | 9fe063022e08a4b6fa5f5935f8f185d5d95814a4 (patch) | |
| tree | 87377f7b889efc639935508556beb9baf010e821 /engine/lib/sites.php | |
| parent | 24690ed95198c093e6fbb91a94b5d0544c740f89 (diff) | |
| download | elgg-9fe063022e08a4b6fa5f5935f8f185d5d95814a4.tar.gz elgg-9fe063022e08a4b6fa5f5935f8f185d5d95814a4.tar.bz2  | |
Upgraded to Elgg 1.8.4.
Diffstat (limited to 'engine/lib/sites.php')
| -rw-r--r-- | engine/lib/sites.php | 40 | 
1 files changed, 3 insertions, 37 deletions
diff --git a/engine/lib/sites.php b/engine/lib/sites.php index 337b2d180..850092cad 100644 --- a/engine/lib/sites.php +++ b/engine/lib/sites.php @@ -231,43 +231,6 @@ function get_site_domain($guid) {  }  /** - * Initialise site handling - * - * Called at the beginning of system running, to set the ID of the current site. - * This is 0 by default, but plugins may alter this behaviour by attaching functions - * to the sites init event and changing $CONFIG->site_id. - * - * @uses $CONFIG - * - * @param string $event       Event API required parameter - * @param string $object_type Event API required parameter - * @param null   $object      Event API required parameter - * - * @return true - * @access private - */ -function sites_boot($event, $object_type, $object) { -	global $CONFIG; - -	$site = elgg_trigger_plugin_hook("siteid", "system"); -	if ($site === null || $site === false) { -		$CONFIG->site_id = (int) datalist_get('default_site'); -	} else { -		$CONFIG->site_id = $site; -	} -	$CONFIG->site_guid = $CONFIG->site_id; -	$CONFIG->site = get_entity($CONFIG->site_guid); - -	return true; -} - -// Register event handlers -elgg_register_event_handler('boot', 'system', 'sites_boot', 2); - -// Register with unit test -elgg_register_plugin_hook_handler('unit_test', 'system', 'sites_test'); - -/**   * Unit tests for sites   *   * @param sting  $hook   unit_test @@ -283,3 +246,6 @@ function sites_test($hook, $type, $value, $params) {  	$value[] = "{$CONFIG->path}engine/tests/objects/sites.php";  	return $value;  } + +// Register with unit test +elgg_register_plugin_hook_handler('unit_test', 'system', 'sites_test');  | 
