2004-08-07 21:58:49 +02:00
|
|
|
<?php
|
|
|
|
//Code to be executed before a split activity
|
|
|
|
// If we didn't retrieve the instance before
|
|
|
|
if(empty($instance->instanceId)) {
|
|
|
|
// This activity needs an instance to be passed to
|
|
|
|
// be started, so get the instance into $instance.
|
|
|
|
if(isset($_REQUEST['iid'])) {
|
|
|
|
$instance->getInstance($_REQUEST['iid']);
|
|
|
|
} else {
|
|
|
|
// defined in lib/Galaxia/config.php
|
|
|
|
galaxia_show_error("No instance indicated");
|
|
|
|
die;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Set the current user for this activity
|
2005-03-27 11:03:07 +02:00
|
|
|
if(isset($GLOBALS['user']) && !empty($instance->instanceId) && !empty($activity_id)) {
|
|
|
|
$instance->setActivityUser($activity_id,$GLOBALS['user']);
|
2004-08-07 21:58:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|