Changeset 636 for trunk/info.php


Ignore:
Timestamp:
Dec 11, 2013, 12:15:15 PM (10 years ago)
Author:
chronos
Message:
  • Added: Pages should have set title which is used in HTML header to show title in web browser title bar.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/info.php

    r577 r636  
    44include('includes/global.php');
    55
    6 $Output = '<h2>Informace a pokyny pro překladatele:</h2>'.
     6class PageInfo extends Page
     7{
     8  function Show()
     9  {
     10        $this->Title = T('Information for translators');
     11        $Output = '<h2>Informace a pokyny pro překladatele:</h2>'.
    712  '<ul>'.
    813  '<li>Texty překládejte <strong>včetně diakritiky</strong> (háčků a čárek). Ta bude v případě potřeby odstraněna při exportování. </li>'.
     
    3338  '</ul><br />'.
    3439  '<br />';
    35 
    36 ShowPage($Output);     
     40  return($Output);
     41  }
     42
     43$Page = new PageInfo($System);
     44ShowPageClass($Page);     
Note: See TracChangeset for help on using the changeset viewer.