Upgrade to some new nextcloud standards

This commit is contained in:
Matias De lellis
2020-05-30 18:33:01 -03:00
parent d417902d94
commit f7ab295a6c
21 changed files with 192 additions and 207 deletions

23
lib/Db/TaskMapper.php Normal file
View File

@@ -0,0 +1,23 @@
<?php
namespace OCA\QuickNotes\Db;
use OCP\IDBConnection;
use OCP\AppFramework\Db\Mapper;
class TaskMapper extends Mapper {
public function __construct(IDBConnection $db) {
parent::__construct($db, 'quicknotes_tasks', '\OCA\QuickNotes\Db\Tasks');
}
public function find($id, $noteId) {
$sql = 'SELECT * FROM *PREFIX*quicknotes_tasks WHERE id = ? AND note_id = ?';
return $this->findEntity($sql, [$id, $noteId]);
}
public function findAll($noteId) {
$sql = 'SELECT * FROM *PREFIX*quicknotes_tasks WHERE note_id = ?';
return $this->findEntities($sql, [$noteId]);
}
}