$privatekey, "publickey" => $publickey ]; } /** * Generates an edu-sharing compatible xml file for registering the application * This is a very basic function and is only intended for demonstration or manual use. Data is not escaped! */ public static function generateEduAppXMLData(string $appId, string $publickey, string $type = 'LMS', string $publicIP = '*') { return ' ' . $appId . ' ' . $publickey . ' ' . $type . ' ' . $publicIP . ' true '; } }