Changeset 118 for trunk/includes


Ignore:
Timestamp:
Feb 21, 2009, 4:06:54 PM (16 years ago)
Author:
george
Message:
Location:
trunk/includes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/global.php

    r117 r118  
    8686    'index.php?Logout' => array(LICENCE_USER, 'Odhlášení ze systému', 'Odhlásit'),
    8787        'log.php' => array(LICENCE_MODERATOR, 'Log dění (Pouze moderátor)', 'Záznamy'),
    88         'import/' => array(LICENCE_ADMIN, 'Načtení překladů do database (pouze admin)', 'Import textů z MaNGOSu'),
     88        'import/' => array(LICENCE_ADMIN, 'Načtení zdrojových textů do databáze (pouze admin)', 'Import textů'),
    8989        //'client_files/generate_SQL.php' => array(LICENCE_ADMIN, 'Generování clientských souborů (pouze admin)', 'Generování C.S.'),
    9090    'https://wow.zdechov.net/mysql/' => array(LICENCE_ADMIN, 'phpMyAdmin(pouze admin)', 'Správa databáze'),
  • trunk/includes/stream.php

    r117 r118  
    6767  {
    6868    return(fread($this->Handle, 1));
     69  }
     70
     71  public function ReadLine()
     72  {
     73    return(fgets($this->Handle));
    6974  }   
    7075   
     
    99104        fwrite($this->Handle, "\0", 1);
    100105  }
     106
     107  public function WriteLine()
     108  {
     109    fputs($this->Handle);
     110  }       
    101111   
    102112  public function Seek($Position, $Type = SEEK_SET)
     
    114124        return(filesize($this->FileName));
    115125  }
     126
     127  public function EOF()
     128  {
     129         return(feof($this->Handle));
     130  }
    116131}
    117132
Note: See TracChangeset for help on using the changeset viewer.