REBRANDING MedDream WARNING: only the default appearance of MedDream is CE certified. After rebranding, the CE label seen in the About dialog becomes invalidated and legally has no sense. If CE certification is not important to you, no problem -- however you should always remove the label as well, as described in Chapter 2. WARNING: disclaimer is not shown in DEMO mode. 1. THE LOGIN FORM The text in the top right corner comes from sharedData.php: $PRODUCT = "MedDream"; $VERSION = "4.05"; $COPYRIGHT = "Copyright 2015 (c) Softneta"; The image above the login form is contained in login.png. It is loaded from login.html without any size restrictions. The background color, font, etc can be adjusted in this part of login.php: else $style = "body { color: #ffffff; font-family: Verdana, Arial, Helvetica, sans-serif; background-color: #000000; font-size: 10px; margin-top: 8px; }"; $replaceArray[1] = getAction(); 2. THE ABOUT DIALOG The CE label and accompanying text about medical device class is removed by adding an empty parameter $MDCLASS to sharedData.php: $MDCLASS = ""; The dialog then will be a bit reduced in height. To change the manufacturer's logo, add a file about.png. Size of the default image is 185 x 41. A different size will cause some repositioning of dialog contents (and size), however 195 x 110 should not be exceeded. When this automatic repositioning fails, scrollbars appear on the dialog and that is at least unaesthetic. If you absolutely need a large image, the safe way is to check your customization on various client systems (different builds of Flash Player, different display DPI, etc) from where MedDream will be opened. To change manufacturer's contact, add a parameter $CONTACTS to sharedData.php. This will also hide the text "Softneta UAB" near the logo, and as a result the maximum dimensions of about.png become 410 x 110. Example that corresponds to default values: $CONTACTS = "Varniu str. 1\nLT-48310 Kaunas\nLithuania|http://www.softneta.com\ninfo@softneta.com|http://www.softneta.com/"; There are 3 parts (geographic address, Internet address, actual URL to be opened when clicking on the Internet address) delimited by "|". If less than 2 occurrences of "|" are found, the remaining information will still have default values. The geographic address can have up to three lines delimited by "\n". The Internet address can have up to two lines delimited by "\n". Each address can be completely empty, too. In case both geographic and Internet addresses are empty, the text "Contacts:" is not displayed and the URL is ignored. The URL is not necessarily a Web link, it can contain any URI scheme (for example, mailto: or even skype:) supported on the client system. 3. DISCLAIMER Disclaimer can be added by filling a parameter $DISCLAIMER to sharedData.php. Disclaimer will be removed by leaving empty parameter $DISCLAIMER to sharedData.php Example to display disclaimer: $DISCLAIMER = "my disclaimer text goes here"; Example to remove disclaimer: $DISCLAIMER = ""; To set end line, requires to add "\n" symbols. Example: $DISCLAIMER = "my disclaimer \n text goes here"; on the first line will display - "my disclaimer " on the second line will display - " text goes here"