chanshots.php 363 B

123456789101112131415
  1. <?php
  2. /**
  3. * Periodic channels screenshots
  4. */
  5. if (ubRouting::get('action') == 'chanshots') {
  6. $chanshotsProcess = new StarDust(ChanShots::CHANSHOTS_PID);
  7. if ($chanshotsProcess->notRunning()) {
  8. $chanShots = new ChanShots();
  9. $chanShots->run();
  10. die('OK:CHANSHOTS');
  11. } else {
  12. die('SKIP:CHANSHOTS_ALREADY_RUNNING');
  13. }
  14. }