Changeset 579 for trunk/Modules/WebCam


Ignore:
Timestamp:
Oct 11, 2013, 11:28:10 PM (11 years ago)
Author:
chronos
Message:
  • Upraveno: Vylepšena třída Config. Měla by později umět ukládat jak do souborů tak do databáze.
Location:
trunk/Modules/WebCam
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/WebCam/WebCam.php

    r577 r579  
    2828
    2929        // Reload the image every defined period
    30         theTimer = setTimeout("reloadImage()", '.($Config['Web']['WebcamRefresh'] * 1000).');
     30        theTimer = setTimeout("reloadImage()", '.($this->System->Config['Web']['WebcamRefresh'] * 1000).');
    3131      }
    3232      </script>';
    3333
    34       $Output .= '<br /><div align="center"><img name="theImage" src="" idth="640" height="480" alt="Webcam image"><br>Poslední aktualizace: '.date('j.n.Y G:i', filemtime($this->System->Modules['Webcam']->ImageFileName)).'<br>Obnovování po '.$Config['Web']['WebcamRefresh'].' sekundách</div><br />';
     34      $Output .= '<br /><div align="center"><img name="theImage" src="" idth="640" height="480" alt="Webcam image"><br>Poslední aktualizace: '.date('j.n.Y G:i', filemtime($this->System->Modules['Webcam']->ImageFileName)).'<br>Obnovování po '.$this->System->Config['Web']['WebcamRefresh'].' sekundách</div><br />';
    3535    } else $Output = '<br />Obrázek nenalezen.<br /><br />';
    3636
  • trunk/Modules/WebCam/webcam_refresh.php

    r548 r579  
    11<?php
    2 include('../global.php');
     2include('../../Common/Global.php');
    33
    44$Config['Web']['ShowPHPError'] = true;
Note: See TracChangeset for help on using the changeset viewer.