Skip to content

Latest commit

 

History

History
executable file
·
52 lines (42 loc) · 1.68 KB

README.md

File metadata and controls

executable file
·
52 lines (42 loc) · 1.68 KB

KunstmaanNodeSearchBundle

Build Status Total Downloads Latest Stable Version Analytics

This bundle uses the KunstmaanSearchBundle to search through Nodes from the KunstmaanNodeBundle

Installation

composer.json

    "require": {
        "kunstmaan/node-search-bundle": "*"
    },

AppKernel.php:

    public function registerBundles()
    {
        $bundles = array(
            // ...
            new Kunstmaan\NodeSearchBundle\KunstmaanNodeSearchBundle(),
            // ...
        );

Configuration

SearchPage

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"
            )
        );
    }

Documentation

Find more documentation on how it works here