123456789101112131415161718192021 |
- <?php
- use oxusmedia\webAppMulti\controller;
- class cuenta extends controller
- {
- public function select($params)
- {
- $this->webApp()->requireLoginRedir();
- if (isset($params['id'])) {
- app\models\CuentaSel::select($params['id']);
- $this->redirect($_SERVER["HTTP_REFERER"]);
- }
- }
- }
|