crimeandpunishment.php 333 B

1234567891011121314
  1. <?php
  2. /*
  3. * Crime And Punishment processing
  4. */
  5. if (ubRouting::get('action') == 'crimeandpunishment') {
  6. if ($alterconf['CAP_ENABLED']) {
  7. $dostoevsky = new CrimeAndPunishment();
  8. $dostoevsky->processing();
  9. die('OK:CRIMEANDPUNISHMENT');
  10. } else {
  11. die('ERROR:CRIMEANDPUNISHMENT_DISABLED');
  12. }
  13. }