This bundle uses the KunstmaanSearchBundle to search through Nodes from the KunstmaanNodeBundle
composer.json
"require": {
"kunstmaan/node-search-bundle": "*"
},
AppKernel.php:
public function registerBundles()
{
$bundles = array(
// ...
new Kunstmaan\NodeSearchBundle\KunstmaanNodeSearchBundle(),
// ...
);
Extend the AbstractSearchPage and add your new class as a possible child to a page in your website :
/**
* @return array
*/
public function getPossibleChildTypes()
{
return array(
array(
'name' => 'Search page',
'class'=> "Acme\DemoBundle\Entity\SearchPage"
)
);
}
Find more documentation on how it works here