/
var
/
www
/
html
/
sugar13-old
/
install
/
Upload File
HOME
<?php /* * Your installation or use of this SugarCRM file is subject to the applicable * terms available at * http://support.sugarcrm.com/Resources/Master_Subscription_Agreements/. * If you do not agree to all of the applicable terms or do not have the * authority to bind the entity as an authorized representative, then do not * install or use this SugarCRM file. * * Copyright (C) SugarCRM Inc. All rights reserved. */ if( !isset( $install_script ) || !$install_script ){ die($mod_strings['ERR_NO_DIRECT_SCRIPT']); } $langHeader = get_language_header(); /** * @psalm-suppress UndefinedGlobalVariable */ $out =<<<EOQ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html {$langHeader}> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="Content-Style-Type" content="text/css"> <title>{$disabled_title}</title> <link rel="stylesheet" href="install/install.css" type="text/css"> </head> <body> <table cellspacing="0" cellpadding="0" border="0" align="center" class= "shell"> <tr> <th width="400">{$disabled_title_2}</th> <th width="200" height="30" style="text-align: right;"> <a href="http://www.sugarcrm.com" target="_blank"> <img src="{$loginImage}" alt="SugarCRM" border="0" class="sugarcrm-logo"> </a> </th> </tr> <tr> <td colspan="2"> <p> <img src="{$sugar_md}" alt="SugarCRM" border="0"> </p> {$disabled_text} </td> </tr> <tr> <td align="right" colspan="2" height="20"> <hr> <form action="install.php" method="post" name="form" id="form"> <table cellspacing="0" cellpadding="0" border="0" class="stdTable"> <tr> <td><input class="button" type="submit" value="{$mod_strings['LBL_START']}" /></td> </tr> </table> </form> </td> </tr> </table> </body> </html> EOQ; echo $out;