12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace app\models;
- use oxusmedia\webAppMulti\webApp;
- class Cuenta
- {
- public $id, $cuenta, $role;
- public function __construct($id = null)
- {
- if ($id != null) {
- $cuenta = webApp::app()->db()->queryRow('SELECT * FROM cuentas WHERE id = :id', array(
- 'id' => $id
- ));
- if ($cuenta) {
- $this->id = $cuenta->id;
- $this->cuenta = $cuenta->nombre;
- $this->role = $cuenta->role;
- return true;
- }
- }
- return false;
- }
- }
|