-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IBX-7895: Added possibility to change create content button label #1200
base: 4.6
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,76 @@ | ||||||||||||||||||||||||||
<?php | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||
* @copyright Copyright (C) Ibexa AS. All rights reserved. | ||||||||||||||||||||||||||
* @license For full copyright and license information view LICENSE file distributed with this source code. | ||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||
declare(strict_types=1); | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
namespace Ibexa\AdminUi\Menu; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
use Ibexa\AdminUi\Specification\ContentType\ContentTypeIsUserGroup; | ||||||||||||||||||||||||||
use Ibexa\Dashboard\Specification\ContentTypeIsDashboardContainer; | ||||||||||||||||||||||||||
use Ibexa\Contracts\Core\Repository\Values\ContentType\ContentType; | ||||||||||||||||||||||||||
use Ibexa\Contracts\Core\SiteAccess\ConfigResolverInterface; | ||||||||||||||||||||||||||
use JMS\TranslationBundle\Model\Message; | ||||||||||||||||||||||||||
use JMS\TranslationBundle\Translation\TranslationContainerInterface; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
final class ContentRightSidebarLabelFactory implements ContentRightSidebarLabelFactoryInterface, TranslationContainerInterface | ||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||
public const CREATE = 'sidebar_right.create'; | ||||||||||||||||||||||||||
public const CREATE_CONTENT = 'sidebar_right.create_content'; | ||||||||||||||||||||||||||
public const CREATE_USER = 'sidebar_right.create_user'; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
/** @var \Ibexa\Contracts\Core\SiteAccess\ConfigResolverInterface */ | ||||||||||||||||||||||||||
private $configResolver; | ||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
public function __construct(ConfigResolverInterface $configResolver) | ||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||
$this->configResolver = $configResolver; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||
* Returns label based on content type. | ||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||
* @param \Ibexa\Contracts\Core\Repository\Values\ContentType\ContentType $contentType | ||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||
* @return string | ||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||
* @throws \Ibexa\AdminUi\Exception\InvalidArgumentException | ||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||
Comment on lines
+32
to
+40
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||
public function createLabel(ContentType $contentType): string | ||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||
switch (true) { | ||||||||||||||||||||||||||
case $this->isUserGroup($contentType): | ||||||||||||||||||||||||||
return self::CREATE_USER; | ||||||||||||||||||||||||||
case $this->isDashboard($contentType): | ||||||||||||||||||||||||||
return self::CREATE; | ||||||||||||||||||||||||||
default: | ||||||||||||||||||||||||||
return self::CREATE_CONTENT; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
private function isUserGroup(ContentType $contentType): bool | ||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||
return (new ContentTypeIsUserGroup($this->configResolver->getParameter('user_group_content_type_identifier')))->isSatisfiedBy($contentType); | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
private function isDashboard(ContentType $contentType): bool | ||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||
return (new ContentTypeIsDashboardContainer($this->configResolver->getParameter('dashboard.container_content_type_identifier')))->isSatisfiedBy($contentType); | ||||||||||||||||||||||||||
Check failure on line 60 in src/lib/Menu/ContentRightSidebarLabelFactory.php GitHub Actions / Tests (7.4)
Check failure on line 60 in src/lib/Menu/ContentRightSidebarLabelFactory.php GitHub Actions / Tests (7.4)
Check failure on line 60 in src/lib/Menu/ContentRightSidebarLabelFactory.php GitHub Actions / Tests (8.0)
Check failure on line 60 in src/lib/Menu/ContentRightSidebarLabelFactory.php GitHub Actions / Tests (8.0)
Check failure on line 60 in src/lib/Menu/ContentRightSidebarLabelFactory.php GitHub Actions / Tests (8.1)
|
||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||
* @return \JMS\TranslationBundle\Model\Message[] | ||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||
public static function getTranslationMessages(): array | ||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||
return [ | ||||||||||||||||||||||||||
(new Message(self::CREATE_CONTENT, 'ibexa_menu'))->setDesc('Create content'), | ||||||||||||||||||||||||||
(new Message(self::CREATE_USER, 'ibexa_menu'))->setDesc('Create user'), | ||||||||||||||||||||||||||
(new Message(self::CREATE, 'ibexa_menu'))->setDesc('Create'), | ||||||||||||||||||||||||||
]; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
class_alias(ContentRightSidebarLabelFactory::class, 'EzSystems\EzPlatformAdminUi\Menu\ContentRightSidebarLabelFactory'); |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
/** | ||
* @copyright Copyright (C) Ibexa AS. All rights reserved. | ||
* @license For full copyright and license information view LICENSE file distributed with this source code. | ||
*/ | ||
declare(strict_types=1); | ||
|
||
namespace Ibexa\AdminUi\Menu; | ||
|
||
use Ibexa\Contracts\Core\Repository\Values\ContentType\ContentType; | ||
|
||
interface ContentRightSidebarLabelFactoryInterface | ||
{ | ||
public function createLabel(ContentType $contentType): string; | ||
} | ||
|
||
class_alias(ContentRightSidebarLabelFactoryInterface::class, 'EzSystems\EzPlatformAdminUi\Menu\ContentRightSidebarLabelFactoryInterface'); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Those are not needed in new code. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From my pov, this comment adds no value.