2018-11-15 23:59:00 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Friendica\Directory\Routes\Web;
|
|
|
|
|
|
|
|
|
|
/**
|
2020-06-13 13:15:53 -04:00
|
|
|
* @author Hypolite Petovan <hypolite@mrpetovan.com>
|
2018-11-15 23:59:00 -05:00
|
|
|
*/
|
|
|
|
|
class Search extends BaseRoute
|
|
|
|
|
{
|
|
|
|
|
public function __construct(\Slim\Container $container)
|
|
|
|
|
{
|
|
|
|
|
parent::__construct($container);
|
|
|
|
|
|
|
|
|
|
$this->controller = new \Friendica\Directory\Controllers\Web\Search(
|
|
|
|
|
$this->container->atlas,
|
|
|
|
|
$this->container->get('\Friendica\Directory\Models\Profile'),
|
|
|
|
|
$this->container->get('\Friendica\Directory\Views\Widget\AccountTypeTabs'),
|
|
|
|
|
$this->container->renderer,
|
|
|
|
|
$this->container->l10n
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|