forked from sulu/SuluCommentBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Webspace settings frontend * Fix StyleCI * Fixed bug * PHPCR Implementation (sulu#4) * Implementation finished * Add tests * Add ES indexing * Info just gray * Check for ES in test * Add install notes * Better doc * Better doc * Fix bug in addition webspaces preselect * Fixed bug * Dataprovider considers webspace settings (sulu#5) * Implementation finished * Dataprovider considers webspace settings * Code clean up * Corrected property param * Update ArticleDataProvider.php * Resolve Sitemap correctly (sulu#6) * Add Canonical Tag (sulu#7) * Add Canonical Tag * Code clean up * Target webspace (sulu#8) * Add targetWebspace to ViewDocument * Fixed test * Search Subscriber (sulu#10) * ArticleSearchSubscriber * Code clean up * Fix tests * Add "ignoreWebspaces" param to twig extension (sulu#9) * Add "ignoreWebspaces" param to twig extension * Code clean up * Finishing (sulu#11) * Add UPGRADE note * Add NL translations * Add FR translation * Fix indention * Fix StyleCI * Page tree route (sulu#12) * Page tree route * Disable webspace settings form * Fix StyleCI
- Loading branch information
1 parent
2377385
commit 0152236
Showing
62 changed files
with
2,369 additions
and
159 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
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
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
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
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
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,29 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of Sulu. | ||
* | ||
* (c) MASSIVE ART WebServices GmbH | ||
* | ||
* This source file is subject to the MIT license that is bundled | ||
* with this source code in the file LICENSE. | ||
*/ | ||
|
||
namespace Sulu\Bundle\ArticleBundle\DependencyInjection; | ||
|
||
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface; | ||
use Symfony\Component\DependencyInjection\ContainerBuilder; | ||
use Symfony\Component\DependencyInjection\Reference; | ||
|
||
class RouteEnhancerCompilerPass implements CompilerPassInterface | ||
{ | ||
public function process(ContainerBuilder $container) | ||
{ | ||
if (!$container->hasDefinition('sulu_route.routing.router')) { | ||
return; | ||
} | ||
|
||
$router = $container->getDefinition('sulu_route.routing.router'); | ||
$router->addMethodCall('addRouteEnhancer', [new Reference('sulu_article.route_enhancer'), 100]); | ||
} | ||
} |
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
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
Oops, something went wrong.