subtype = "front"; // Set its owner to the current user $frontpage->owner_guid = get_loggedin_userid(); // For now, set its access to public $frontpage->access_id = ACCESS_PUBLIC; // Set its title and description appropriately $frontpage->title = $contents_left; $frontpage->description = $contents_right; // Before we can set metadata, save if (!$frontpage->save()) { register_error(elgg_echo("expages:error")); forward("pg/expages/index.php?type=front"); } // Success message system_message(elgg_echo("expages:posted")); // Forward back to the page forward("pg/expages/index.php?type=front"); ?>