mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
20 lines
458 B
PHP
20 lines
458 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Yggverse\Yoda\Entity\Browser\History\Container\Navbar;
|
|
|
|
class Search extends \Yggverse\Yoda\Abstract\Entity\Browser\History\Container\Navbar\Button
|
|
{
|
|
public const SENSITIVE = true;
|
|
public const LABEL = 'Search';
|
|
|
|
protected function _onCLick(
|
|
\GtkButton $entity
|
|
): void
|
|
{
|
|
$this->navbar->container->content->search(
|
|
$this->navbar->filter->getValue()
|
|
);
|
|
}
|
|
}
|