forked from Public/pics
Asset: remove old setKeyData method
This commit is contained in:
parent
c2aae4fb6e
commit
0487ad16b9
@ -697,28 +697,6 @@ class Asset
|
|||||||
get_object_vars($this));
|
get_object_vars($this));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function setKeyData($title, $slug, DateTime $date_captured = null, $priority)
|
|
||||||
{
|
|
||||||
$params = [
|
|
||||||
'id_asset' => $this->id_asset,
|
|
||||||
'title' => $title,
|
|
||||||
'slug' => $slug,
|
|
||||||
'priority' => $priority,
|
|
||||||
];
|
|
||||||
|
|
||||||
if (isset($date_captured))
|
|
||||||
$params['date_captured'] = $date_captured->format('Y-m-d H:i:s');
|
|
||||||
|
|
||||||
return Registry::get('db')->query('
|
|
||||||
UPDATE assets
|
|
||||||
SET title = {string:title},
|
|
||||||
slug = {string:slug},' . (isset($date_captured) ? '
|
|
||||||
date_captured = {datetime:date_captured},' : '') . '
|
|
||||||
priority = {int:priority}
|
|
||||||
WHERE id_asset = {int:id_asset}',
|
|
||||||
$params);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function getUrlForAdjacentInSet($prevNext, ?Tag $tag, $activeFilter)
|
protected function getUrlForAdjacentInSet($prevNext, ?Tag $tag, $activeFilter)
|
||||||
{
|
{
|
||||||
$next = $prevNext === 'next';
|
$next = $prevNext === 'next';
|
||||||
|
Loading…
Reference in New Issue
Block a user