cuenta.php 338 B

123456789101112131415161718192021
  1. <?php
  2. use oxusmedia\webAppMulti\controller;
  3. class cuenta extends controller
  4. {
  5. public function select($params)
  6. {
  7. $this->webApp()->requireLoginRedir();
  8. if (isset($params['id'])) {
  9. $this->webApp()->setCuenta($params['id']);
  10. $this->redirect($_SERVER["HTTP_REFERER"]);
  11. }
  12. }
  13. }