[SearchEngine] Add support for queries by date

This commit is contained in:
Romain Neutron
2012-10-26 20:09:05 +02:00
parent 8a829f03b1
commit c5e9b1f7b5
30 changed files with 804 additions and 189 deletions

View File

@@ -0,0 +1,29 @@
<?php
/*
* This file is part of Phraseanet
*
* (c) 2005-2012 Alchemy
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Alchemy\Phrasea\Core\Provider;
use Silex\Application;
use Silex\ServiceProviderInterface;
class UnicodeServiceProvider implements ServiceProviderInterface
{
public function register(Application $app)
{
$app['unicode'] = $app->share(function($app) {
return new \unicode();
});
}
public function boot(Application $app)
{
}
}