nextcloud-app-radio/db/stationmapper.php
2017-02-21 17:57:30 +01:00

24 lines
604 B
PHP

<?php
namespace OCA\Radio\Db;
use OCP\IDb;
use OCP\AppFramework\Db\Mapper;
class StationMapper extends Mapper {
public function __construct(IDb $db) {
parent::__construct($db, 'radio_stations', '\OCA\Radio\Db\Station');
}
public function find($id, $userId) {
$sql = 'SELECT * FROM *PREFIX*radio_stations WHERE id = ? AND user_id = ?';
return $this->findEntity($sql, [$id, $userId]);
}
public function findAll($userId) {
$sql = 'SELECT * FROM *PREFIX*radio_stations WHERE user_id = ?';
return $this->findEntities($sql, [$userId]);
}
}