/app/View/Pages/home.ctp

https://bitbucket.org/floresj/notetime · Unknown · 188 lines · 185 code · 3 blank · 0 comment · 0 complexity · 36394b7a873f7265084461e475b1be60 MD5 · raw file

  1. <?php
  2. /**
  3. *
  4. * PHP 5
  5. *
  6. * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
  7. * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
  8. *
  9. * Licensed under The MIT License
  10. * Redistributions of files must retain the above copyright notice.
  11. *
  12. * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
  13. * @link http://cakephp.org CakePHP(tm) Project
  14. * @package Cake.View.Pages
  15. * @since CakePHP(tm) v 0.10.0.1076
  16. * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  17. */
  18. if (Configure::read('debug') == 0):
  19. throw new NotFoundException();
  20. endif;
  21. App::uses('Debugger', 'Utility');
  22. ?>
  23. <iframe src="http://cakephp.org/bake-banner" width="830" height="160" style="overflow:hidden; border:none;">
  24. <p>For updates and important announcements, visit http://cakefest.org</p>
  25. </iframe>
  26. <h2><?php echo __d('cake_dev', 'Release Notes for CakePHP %s.', Configure::version()); ?></h2>
  27. <a href="http://cakephp.org/changelogs/<?php echo Configure::version(); ?>"><?php echo __d('cake_dev', 'Read the changelog'); ?> </a>
  28. <?php
  29. if (Configure::read('debug') > 0):
  30. Debugger::checkSecurityKeys();
  31. endif;
  32. ?>
  33. <p id="url-rewriting-warning" style="background-color:#e32; color:#fff;">
  34. <?php echo __d('cake_dev', 'URL rewriting is not properly configured on your server.'); ?>
  35. 1) <a target="_blank" href="http://book.cakephp.org/2.0/en/installation/advanced-installation.html#apache-and-mod-rewrite-and-htaccess" style="color:#fff;">Help me configure it</a>
  36. 2) <a target="_blank" href="http://book.cakephp.org/2.0/en/development/configuration.html#cakephp-core-configuration" style="color:#fff;">I don't / can't use URL rewriting</a>
  37. </p>
  38. <p>
  39. <?php
  40. if (version_compare(PHP_VERSION, '5.2.8', '>=')):
  41. echo '<span class="notice success">';
  42. echo __d('cake_dev', 'Your version of PHP is 5.2.8 or higher.');
  43. echo '</span>';
  44. else:
  45. echo '<span class="notice">';
  46. echo __d('cake_dev', 'Your version of PHP is too low. You need PHP 5.2.8 or higher to use CakePHP.');
  47. echo '</span>';
  48. endif;
  49. ?>
  50. </p>
  51. <p>
  52. <?php
  53. if (is_writable(TMP)):
  54. echo '<span class="notice success">';
  55. echo __d('cake_dev', 'Your tmp directory is writable.');
  56. echo '</span>';
  57. else:
  58. echo '<span class="notice">';
  59. echo __d('cake_dev', 'Your tmp directory is NOT writable.');
  60. echo '</span>';
  61. endif;
  62. ?>
  63. </p>
  64. <p>
  65. <?php
  66. $settings = Cache::settings();
  67. if (!empty($settings)):
  68. echo '<span class="notice success">';
  69. echo __d('cake_dev', 'The %s is being used for core caching. To change the config edit APP/Config/core.php ', '<em>'. $settings['engine'] . 'Engine</em>');
  70. echo '</span>';
  71. else:
  72. echo '<span class="notice">';
  73. echo __d('cake_dev', 'Your cache is NOT working. Please check the settings in APP/Config/core.php');
  74. echo '</span>';
  75. endif;
  76. ?>
  77. </p>
  78. <p>
  79. <?php
  80. $filePresent = null;
  81. if (file_exists(APP . 'Config' . DS . 'database.php')):
  82. echo '<span class="notice success">';
  83. echo __d('cake_dev', 'Your database configuration file is present.');
  84. $filePresent = true;
  85. echo '</span>';
  86. else:
  87. echo '<span class="notice">';
  88. echo __d('cake_dev', 'Your database configuration file is NOT present.');
  89. echo '<br/>';
  90. echo __d('cake_dev', 'Rename APP/Config/database.php.default to APP/Config/database.php');
  91. echo '</span>';
  92. endif;
  93. ?>
  94. </p>
  95. <?php
  96. if (isset($filePresent)):
  97. App::uses('ConnectionManager', 'Model');
  98. try {
  99. $connected = ConnectionManager::getDataSource('default');
  100. } catch (Exception $connectionError) {
  101. $connected = false;
  102. }
  103. ?>
  104. <p>
  105. <?php
  106. if ($connected && $connected->isConnected()):
  107. echo '<span class="notice success">';
  108. echo __d('cake_dev', 'Cake is able to connect to the database.');
  109. echo '</span>';
  110. else:
  111. echo '<span class="notice">';
  112. echo __d('cake_dev', 'Cake is NOT able to connect to the database.');
  113. echo '<br /><br />';
  114. echo $connectionError->getMessage();
  115. echo '</span>';
  116. endif;
  117. ?>
  118. </p>
  119. <?php endif;?>
  120. <?php
  121. App::uses('Validation', 'Utility');
  122. if (!Validation::alphaNumeric('cakephp')) {
  123. echo '<p><span class="notice">';
  124. echo __d('cake_dev', 'PCRE has not been compiled with Unicode support.');
  125. echo '<br/>';
  126. echo __d('cake_dev', 'Recompile PCRE with Unicode support by adding <code>--enable-unicode-properties</code> when configuring');
  127. echo '</span></p>';
  128. }
  129. ?>
  130. <h3><?php echo __d('cake_dev', 'Editing this Page'); ?></h3>
  131. <p>
  132. <?php
  133. echo __d('cake_dev', 'To change the content of this page, edit: APP/View/Pages/home.ctp.<br />
  134. To change its layout, edit: APP/View/Layouts/default.ctp.<br />
  135. You can also add some CSS styles for your pages at: APP/webroot/css.');
  136. ?>
  137. </p>
  138. <h3><?php echo __d('cake_dev', 'Getting Started'); ?></h3>
  139. <p>
  140. <?php
  141. echo $this->Html->link(
  142. sprintf('<strong>%s</strong> %s', __d('cake_dev', 'New'), __d('cake_dev', 'CakePHP 2.0 Docs')),
  143. 'http://book.cakephp.org/2.0/en/',
  144. array('target' => '_blank', 'escape' => false)
  145. );
  146. ?>
  147. </p>
  148. <p>
  149. <?php
  150. echo $this->Html->link(
  151. __d('cake_dev', 'The 15 min Blog Tutorial'),
  152. 'http://book.cakephp.org/2.0/en/tutorials-and-examples/blog/blog.html',
  153. array('target' => '_blank', 'escape' => false)
  154. );
  155. ?>
  156. </p>
  157. <h3><?php echo __d('cake_dev', 'More about Cake'); ?></h3>
  158. <p>
  159. <?php echo __d('cake_dev', 'CakePHP is a rapid development framework for PHP which uses commonly known design patterns like Active Record, Association Data Mapping, Front Controller and MVC.'); ?>
  160. </p>
  161. <p>
  162. <?php echo __d('cake_dev', 'Our primary goal is to provide a structured framework that enables PHP users at all levels to rapidly develop robust web applications, without any loss to flexibility.'); ?>
  163. </p>
  164. <ul>
  165. <li><a href="http://cakefoundation.org/"><?php echo __d('cake_dev', 'Cake Software Foundation'); ?> </a>
  166. <ul><li><?php echo __d('cake_dev', 'Promoting development related to CakePHP'); ?></li></ul></li>
  167. <li><a href="http://www.cakephp.org"><?php echo __d('cake_dev', 'CakePHP'); ?> </a>
  168. <ul><li><?php echo __d('cake_dev', 'The Rapid Development Framework'); ?></li></ul></li>
  169. <li><a href="http://book.cakephp.org"><?php echo __d('cake_dev', 'CakePHP Documentation'); ?> </a>
  170. <ul><li><?php echo __d('cake_dev', 'Your Rapid Development Cookbook'); ?></li></ul></li>
  171. <li><a href="http://api20.cakephp.org"><?php echo __d('cake_dev', 'CakePHP API'); ?> </a>
  172. <ul><li><?php echo __d('cake_dev', 'Quick Reference'); ?></li></ul></li>
  173. <li><a href="http://bakery.cakephp.org"><?php echo __d('cake_dev', 'The Bakery'); ?> </a>
  174. <ul><li><?php echo __d('cake_dev', 'Everything CakePHP'); ?></li></ul></li>
  175. <li><a href="http://live.cakephp.org"><?php echo __d('cake_dev', 'The Show'); ?> </a>
  176. <ul><li><?php echo __d('cake_dev', 'The Show is a live and archived internet radio broadcast CakePHP-related topics and answer questions live via IRC, Skype, and telephone.'); ?></li></ul></li>
  177. <li><a href="http://groups.google.com/group/cake-php"><?php echo __d('cake_dev', 'CakePHP Google Group'); ?> </a>
  178. <ul><li><?php echo __d('cake_dev', 'Community mailing list'); ?></li></ul></li>
  179. <li><a href="irc://irc.freenode.net/cakephp">irc.freenode.net #cakephp</a>
  180. <ul><li><?php echo __d('cake_dev', 'Live chat about CakePHP'); ?></li></ul></li>
  181. <li><a href="http://github.com/cakephp/"><?php echo __d('cake_dev', 'CakePHP Code'); ?> </a>
  182. <ul><li><?php echo __d('cake_dev', 'For the Development of CakePHP Git repository, Downloads'); ?></li></ul></li>
  183. <li><a href="http://cakephp.lighthouseapp.com/"><?php echo __d('cake_dev', 'CakePHP Lighthouse'); ?> </a>
  184. <ul><li><?php echo __d('cake_dev', 'CakePHP Tickets, Wiki pages, Roadmap'); ?></li></ul></li>
  185. </ul>