28 lines
581 B
PHP
28 lines
581 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of blomstra/search.
|
|
*
|
|
* Copyright (c) 2022 Blomstra Ltd.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE.md
|
|
* file that was distributed with this source code.
|
|
*
|
|
*/
|
|
|
|
namespace Blomstra\Search\Searchers;
|
|
|
|
use Blomstra\Search\Seeders\CommentSeeder;
|
|
|
|
class CommentPostSearcher extends Searcher
|
|
{
|
|
protected string|null $seeder = CommentSeeder::class;
|
|
|
|
public function enabled(): bool
|
|
{
|
|
$enabled = $this->setting('blomstra-search.search-post-bodies', true);
|
|
|
|
return boolval($enabled);
|
|
}
|
|
}
|