change db namespaces

This commit is contained in:
yggverse 2024-07-14 16:23:34 +03:00
parent ef05326d97
commit 531d4d7735
4 changed files with 16 additions and 16 deletions

View file

@ -92,7 +92,7 @@ class Content
);
// Update history in database
$this->page->container->browser->database->renewHistory(
$this->page->container->browser->database->renewBrowserPageHistory(
$address->get(),
// @TODO title
);

View file

@ -74,7 +74,7 @@ class Content
{
$this->table->data->clear();
if ($records = $this->container->history->browser->database->findHistory($filter))
if ($records = $this->container->history->browser->database->findBrowserPageHistory($filter))
{
foreach ($records as $record)
{

View file

@ -14,7 +14,7 @@ class Delete extends \Yggverse\Yoda\Abstract\Entity\Browser\History\Container\Na
{
if ($id = $this->navbar->container->content->table->getSelectedId())
{
$this->navbar->container->history->browser->database->deleteHistory(
$this->navbar->container->history->browser->database->deleteBrowserPageHistory(
$id
);
}