Fix #736 : Re-inject phraseanet rights after collection creation in case of PhraseaEngine

This commit is contained in:
Romain Neutron
2013-11-28 13:24:51 +01:00
parent 5504f9013a
commit 1472f96e93
14 changed files with 196 additions and 10 deletions

View File

@@ -0,0 +1,22 @@
<?php
/*
* This file is part of Phraseanet
*
* (c) 2005-2013 Alchemy
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Alchemy\Phrasea\SearchEngine\Phrasea;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
class SphinxSearchEngineSubscriber implements EventSubscriberInterface
{
public static function getSubscribedEvents()
{
return array();
}
}