定制 perspeqtive/sulu-media-credits-bundle 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

perspeqtive/sulu-media-credits-bundle

Composer 安装命令:

composer require perspeqtive/sulu-media-credits-bundle

包简介

Display media credits on your website

README 文档

README

Packagist Version

The Sulu Media Credits Bundle enables the automatic listing of media credits for media used on the current website. It scans the content via the reference bundle of the current website for linked media and provides them collectively for display.

🚀 Features

  • Automatic Detection: Detects media references in various content types.
  • Centralized Display: Collects all media credits of the current page in one place (e.g., in the masthead).
  • Additional Info: Considers copyright information and credit fields from media metadata.
  • Memory Optimization: Uses generators to reduce memory usage.
  • Linking: Provides links to the pages where the media is used (if applicable).
  • Extendable: Easily add your own logic for additional content types.

🛠️ Installation

Install the bundle via composer:

composer require perspeqtive/sulu-media-credits-bundle

Activate the bundle

If you are not using symfony flex, register it in your config/bundles.php:

return [
    // ...
    PERSPEQTIVE\MediaCreditsBundle\MediaCreditsBundle::class => ['all' => true],
];

🛠️ Usage

The bundle provides a Twig function that returns a collection of all media references on the current website.

Twig Function

Use media_credits() to retrieve the credits collection.

{% set credits = media_credits() %}

{% if credits.hasCredits %}
    <section class="media-credits">
        <h3>Media Credits</h3>
        <ul>
            {% for item in credits %}
                <li>
                    <strong>{{ item.title }}</strong>
                    {% if item.credit %}- {{ item.credit }}{% endif %}
                    {% if item.copyright %}(&copy; {{ item.copyright }}){% endif %}
                    
                    {% if item.references %}
                        Used in:
                        <ul class="references"> 
                            {% for ref in item.references.next %}
                                <li><a href="{{ ref.url }}" target="_blank">{{ ref.title }}</a></li>
                            {% endfor %}
                        </ul>
                    {% endif %}
                </li>
            {% endfor %}
        </ul>
    </section>
{% endif %}

Data Structure

The media_credits() function returns a CreditsCollection object, which iterates over Credits objects.

Property Type Description
mediaId int The ID of the medium
title string The title/name of the medium
copyright string The copyright field from the metadata
credit string The credit field from the metadata
references MediaReferenceCollection Collection of references where the file is linked

Within item.references.next (MediaReference):

Property Type Description
title string Title of the linked page/resource
resourceId string The target resources unique identifier
resourceType string The target resource key like 'pages' or 'articles'
url string URL to the resource

⚠️ Caution:

Only images directly used in page-types are considered for reference linking. When using snippets or custom entities, the references are not returned. The credit and copyright information is still available.

🛠️ Extending the Bundle

If you want to support additional media references (e.g., from custom entities or snippets), you can extend the bundle by implementing two interfaces.

1. Implement ReferenceByTypeRepositoryInterface

This interface is responsible for finding references for a specific media ID.

namespace App\Repository;

use PERSPEQTIVE\MediaCreditsBundle\Domain\References\ReferenceByTypeRepositoryInterface;

class MyCustomReferenceRepository implements ReferenceByTypeRepositoryInterface
{
    public function findReferences(string $mediaId): iterable
    {
        // Your logic to find references for the given mediaId
        // Should return an iterable of arrays with the following keys:
        // 'referenceTitle', 'referenceResourceId', 'referenceResourceKey', 'referenceLocale'
        yield [
            'referenceResourceId' => '123',
            'referenceResourceKey' => 'my_custom_type',
            'referenceTitle' => 'My Custom Entity Title',
            'referenceLocale' => 'en',
        ];
    }
}

2. Implement UrlRepositoryByTypeInterface

This interface is responsible for generating the URL for a found reference.

namespace App\Repository;

use PERSPEQTIVE\MediaCreditsBundle\Domain\Url\UrlRepositoryByTypeInterface;

class MyCustomUrlRepository implements UrlRepositoryByTypeInterface
{
    public function find(string $id, string $locale): ?string
    {
        // Generate the URL for your custom entity
        return '/de/my-custom-entity/' . $id;
    }

    public function isResponsible(string $type): bool
    {
        return $type === 'my_custom_type';
    }
}

3. Register the Services

The bundle uses tagged iterators to collect all repositories.

Via Autowire & Autoconfigure

If your application uses autoconfigure: true, the services will be registered automatically because the bundle registers the interfaces for autoconfiguration.

# config/services.yaml
services:
    _defaults:
        autowire: true
        autoconfigure: true

    App\Repository\MyCustomReferenceRepository: ~
    App\Repository\MyCustomUrlRepository: ~

Manual Registration

If you don't use autoconfigure, you must add the tags manually:

# config/services.yaml
services:
    App\Repository\MyCustomReferenceRepository:
        tags:
            - { name: 'perspeqtive.media_credits.reference_finder_repository' }

    App\Repository\MyCustomUrlRepository:
        tags:
            - { name: 'perspeqtive.media_credits.url_repository' }

👩‍🍳 Contribution

Please feel free to fork and extend existing or add new features and send a pull request with your changes! To establish a consistent code quality, please provide unit tests for all your changes and adapt the documentation.

perspeqtive/sulu-media-credits-bundle 适用场景与选型建议

perspeqtive/sulu-media-credits-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 39 次下载、GitHub Stars 达 3, 最近一次更新时间为 2026 年 05 月 04 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「media」 「bundle」 「sulu」 「credits」 「copyright」 「sulu bundle」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 perspeqtive/sulu-media-credits-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 perspeqtive/sulu-media-credits-bundle 我们能提供哪些服务?
定制开发 / 二次开发

基于 perspeqtive/sulu-media-credits-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 39
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 3
  • 点击次数: 37
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 3
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-05-04