-
Notifications
You must be signed in to change notification settings - Fork 252
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
1 changed file
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<?php | ||
|
||
/** | ||
* This file is part of cocur/slugify. | ||
* | ||
* (c) Florian Eckerstorfer <florian@eckerstorfer.co> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Cocur\Slugify\Bridge\Silex2; | ||
|
||
use Cocur\Slugify\Bridge\Twig\SlugifyExtension; | ||
use Cocur\Slugify\Slugify; | ||
use Pimple\Container; | ||
use Pimple\ServiceProviderInterface; | ||
use Silex\Application; | ||
|
||
/** | ||
* SlugifyServiceProvider | ||
* | ||
* @package cocur/slugify | ||
* @subpackage bridge | ||
* @license http://www.opensource.org/licenses/MIT The MIT License | ||
*/ | ||
class SlugifyServiceProvider implements ServiceProviderInterface | ||
{ | ||
/** | ||
* {@inheritDoc} | ||
*/ | ||
public function register(Container $container) | ||
{ | ||
$container['slugify.options'] = []; | ||
$container['slugify.provider'] = null; | ||
|
||
$container['slugify'] = function ($container) { | ||
return new Slugify($container['slugify.options'], $container['slugify.provider']); | ||
}; | ||
|
||
if (isset($container['twig'])) { | ||
$container['twig'] = $container->extend('twig', function (\Twig_Environment $twig, $container) { | ||
$twig->addExtension(new SlugifyExtension($container['slugify'])); | ||
|
||
return $twig; | ||
}); | ||
} | ||
} | ||
|
||
/** | ||
* {@inheritDoc} | ||
*/ | ||
public function boot(Application $app) | ||
{ | ||
} | ||
} |