Cuenta.php 592 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. namespace app\models;
  3. use oxusmedia\webAppMulti\webApp;
  4. class Cuenta
  5. {
  6. public $id, $cuenta, $role;
  7. public function __construct($id = null)
  8. {
  9. if ($id != null) {
  10. $cuenta = webApp::app()->db()->queryRow('SELECT * FROM cuentas WHERE id = :id', array(
  11. 'id' => $id
  12. ));
  13. if ($cuenta) {
  14. $this->id = $cuenta->id;
  15. $this->cuenta = $cuenta->nombre;
  16. $this->role = $cuenta->role;
  17. return true;
  18. }
  19. }
  20. return false;
  21. }
  22. }