diff options
| author | Syndamia <kamen@syndamia.com> | 2025-02-02 11:06:04 +0200 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2025-02-02 11:06:04 +0200 |
| commit | 0f54da2c648a5913f6ed282f39dc7d6a62ef37da (patch) | |
| tree | 22c0dc0a3e6151c16b5fe0686035d783f96b36e9 /models/archivelist.php | |
| parent | 4bebfa04cf759d77c511541bdf30747c76a3b2e1 (diff) | |
| download | nowayforward_human-0f54da2c648a5913f6ed282f39dc7d6a62ef37da.tar nowayforward_human-0f54da2c648a5913f6ed282f39dc7d6a62ef37da.tar.gz nowayforward_human-0f54da2c648a5913f6ed282f39dc7d6a62ef37da.zip | |
feat(views/list): Fully implement list deletion
Diffstat (limited to 'models/archivelist.php')
| -rw-r--r-- | models/archivelist.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/models/archivelist.php b/models/archivelist.php index bf734e0..7a76475 100644 --- a/models/archivelist.php +++ b/models/archivelist.php @@ -49,4 +49,11 @@ class ArchiveList extends Table { "LID = \"$this->LID\"" ); } + + function delete() { + Table::_delete( + 'ArchiveLists', + "LID = \"$this->LID\"" + ); + } } |
