-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LinkActivityDefinition preview doesn't work: Create PreviewGenerator (#…
…494) * LinkActivityDefinition preview doesn't work: Create PreviewGenerator * Move to PreviewGenerator namespace * Fix deprecation
- Loading branch information
Showing
4 changed files
with
45 additions
and
2 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
40 changes: 40 additions & 0 deletions
40
src/PreviewGenerator/LinkActivityDefinitionPreviewGenerator.php
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,40 @@ | ||
<?php | ||
|
||
/** | ||
* Pimcore | ||
* | ||
* This source file is available under two different licenses: | ||
* - GNU General Public License version 3 (GPLv3) | ||
* - Pimcore Commercial License (PCL) | ||
* Full copyright and license information is available in | ||
* LICENSE.md which is distributed with this source code. | ||
* | ||
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org) | ||
* @license http://www.pimcore.org/license GPLv3 and PCL | ||
*/ | ||
|
||
namespace CustomerManagementFrameworkBundle\PreviewGenerator; | ||
|
||
use Pimcore\Model\DataObject\ClassDefinition\PreviewGeneratorInterface; | ||
use Pimcore\Model\DataObject\Concrete; | ||
use Symfony\Component\Routing\RouterInterface; | ||
|
||
class LinkActivityDefinitionPreviewGenerator implements PreviewGeneratorInterface | ||
{ | ||
public function __construct(protected RouterInterface $router) | ||
{ | ||
} | ||
|
||
public function generatePreviewUrl(Concrete $object, array $params): string | ||
{ | ||
return $this->router->generate( | ||
'cmf_link_activity_definition_preview', | ||
['pimcore_object_preview' => $object->getId()] | ||
); | ||
} | ||
|
||
public function getPreviewConfig(Concrete $object): array | ||
{ | ||
return []; | ||
} | ||
} |
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