Example #1
0
 /**
  * getLicense
  * Get details about the software license. Always return a valid default license.
  * Takes no parameter.
  */
 public static function getlicense($input)
 {
     self::check_version($input);
     $r = Subsonic_XML_Data::createSuccessResponse();
     Subsonic_XML_Data::addLicense($r);
     self::apiOutput($input, $r);
 }