mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 19:38:26 +00:00
5e268e0805
Revision: [2802] git-svn-id: https://svn.cakephp.org/repo/branches/1.x.x.x@2805 3807eeeb-6ff5-0310-8944-8be069107fe0
16 lines
No EOL
1.1 KiB
Text
16 lines
No EOL
1.1 KiB
Text
<?php
|
|
$output = "<p style=\"background:#DBA941;padding:4px;font-size: 16px;\">Your database configuration file is <?php echo file_exists(CONFIGS.'database.php') ?' present.' . \$filePresent = ' ' : ' not present.'; ?></p>\n";
|
|
$output .= "<?php if (!empty(\$filePresent)):?>\n";
|
|
$output .= "<?php \$db = ConnectionManager::getInstance(); ?>\n";
|
|
$output .= "<?php \$connected = \$db->getDataSource('default'); ?>\n";
|
|
$output .= "<p style=\"background:#DBA941;padding:4px;font-size: 16px;\">Cake<?php echo \$connected->isConnected() ? ' is able to' : ' is not able to';?> connect to the database.</p>\n";
|
|
$output .= "<br />\n";
|
|
$output .= "<?php endif; ?>\n";
|
|
$output .= "<h1>CakePHP just \"Baked\" your application: ".Inflector::humanize($app)."</h1>\n";
|
|
$output .= "<h2>Editing this Page</h2>\n";
|
|
$output .= "<p>\n";
|
|
$output .= "To change the content of this page, edit: ".$dir.DS."views".DS."pages".DS."home.thtml.<br />\n";
|
|
$output .= "To change its layout, edit: ".$dir.DS."views".DS."layouts".DS."default.thtml.<br />\n";
|
|
$output .= "You can also add some CSS styles for your pages at: ".$dir.DS."webroot/css/.\n";
|
|
$output .= "</p>\n";
|
|
?> |