Changeset 8 for trunk/class/Page.php


Ignore:
Timestamp:
Jun 13, 2012, 11:09:13 PM (12 years ago)
Author:
maron
Message:

podpora jazyků

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/class/Page.php

    r7 r8  
    66class Page
    77{
    8   protected $Content = 'gg';
     8  protected $Content = 'ggg';
    99  protected $Title = '';
     10  protected $Language;
    1011
    11   function __construct()
     12  function __construct($Language)
    1213  {
     14          $this->Language = $Language;
     15        print_r($this->Language->Texts);
    1316  }
    1417
     
    2326  }
    2427
     28//sets title of page
     29  protected function SetTitle($Title) {
     30        $this->Title = $Title;
     31  }
     32
    2533}
    2634?>
Note: See TracChangeset for help on using the changeset viewer.