Documentation
IPS_GetLibrary
 array IPS_GetLibrary (string $LibraryID) 
  Parameters
| LibraryID | ID of the library | 
Returns
The following information is available as key => value pairs:
| Index | Type | Description | 
|---|---|---|
| Author | string | Name of author | 
| Build | integer | Serial number for versioning | 
| Date | integer | Unix timestamp | 
| LibraryID | string | LibraryID | 
| Name | string | Name of library | 
| URL | string | Internet address of the library | 
| Version | integer | HighByte: Major version, LowByte: Minor Version | 
Description
The command returns an array containing extensive information about the library with ID LibraryID.
Example
print_r(IPS_GetLibrary("{4414D465-0A32-49AC-929A-D948CBCDE06E}")); 
/* returns e.g.:
Array
(
    [LibraryID] => {4414D465-0A32-49AC-929A-D948CBCDE06E}
    [Author] => Symcon GmbH
    [URL] => www.symcon.de
    [Version] => 512
    [Name] => SzenenSteuerung
    [Version] => 1.1
    [Build] => 0
    [Date] => 0
)
*/