You are here

SocialPostAlbumElementInfoManager.php in Open Social 10.3.x

File

modules/social_features/social_post/modules/social_post_album/src/Service/SocialPostAlbumElementInfoManager.php
View source
<?php

namespace Drupal\social_post_album\Service;

use Drupal\Core\Render\ElementInfoManager;

/**
 * Provides an extended plugin manager for element plugins.
 */
class SocialPostAlbumElementInfoManager extends ElementInfoManager {

  /**
   * {@inheritdoc}
   */
  public function getInfo($type) {
    if ($type === 'managed_file') {
      $type = 'social_post_album_managed_file';
    }
    return parent::getInfo($type);
  }

}

Classes

Namesort descending Description
SocialPostAlbumElementInfoManager Provides an extended plugin manager for element plugins.