Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Web2Print Tools Bundle for Pimcore

> [!WARNING]
> This bundle won't be migrated to Pimcore Studio and therefore will be deprecated with 6.1.

Adds following additional features to the web2print functionality of Pimcore.
- Favorite Output Channels
- Document Editable for Configurable Tables
Expand Down
12 changes: 12 additions & 0 deletions src/Web2PrintToolsBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,23 @@
use Web2PrintToolsBundle\DependencyInjection\Web2PrintToolsExtension;
use Web2PrintToolsBundle\Tools\Installer;

/**
* deprecated version 6.1
*/
class Web2PrintToolsBundle extends AbstractPimcoreBundle implements PimcoreBundleAdminClassicInterface
{
use BundleAdminClassicTrait;
use PackageVersionTrait;

public function __construct()
{
trigger_deprecation(
'pimcore/web2print-tools-bundle',
'6.1',
'The Web2PrintToolsBundle is deprecated and will be discontinued with Pimcore Studio.'
);
}

protected function getComposerPackageName(): string
{
return 'pimcore/web2print-tools-bundle';
Expand Down