1 <?php
2
3 /*
4 * This file is part of the Icybee package.
5 *
6 * (c) Olivier Laviale <olivier.laviale@gmail.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12 namespace Icybee\Modules\Search;
13
14 class Module extends \Icybee\Module
15 {
16 protected function lazy_get_views()
17 {
18 return array
19 (
20 'home' => array
21 (
22 'title' => 'Rechercher sur le site',
23 'renders' => \Icybee\Modules\Views\View::RENDERS_MANY
24 )
25 );
26 }
27 }