TYPO3 CMS  TYPO3_6-2
MessageDisplay.php
Go to the documentation of this file.
1 <?php
3 
22 
28  public function displayMessage() {
29  $out = '
30  <div>
31  <div class="typo3-message message-information">
32  <div class="message-header">PostgreSQL</div>
33  <div class="message-body">
34  If you use a PostgreSQL database, make sure to run SQL scripts located in<br />
35  <tt>' . \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath('dbal') . 'res/postgresql/</tt><br />
36  to ensure best compatibility with TYPO3.
37  </div>
38  </div>
39  </div>
40  ';
41  return $out;
42  }
43 
44 }