Hi,
Would it be possible to get these services integrated?

  • bandcamp
  • spotify
  • soundcloud

Comments

kristofferrom created an issue. See original summary.

cbeier’s picture

You can integrate additional services (that you need) very easily as new plugins:

Create a new module (for your project) and add a new file inside: your_module/src/Plugin/SocialMediaLinks/Platform/ (e.g. your_module/src/Plugin/SocialMediaLinks/Platform/Bandcamp.php).

<?php

namespace Drupal\your_module\Plugin\SocialMediaLinks\Platform;

use Drupal\social_media_links\PlatformBase;

/**
 * Provides 'bandcamp' platform.
 *
 * @Platform(
 *   id = "bandcamp",
 *   name = @Translation("Bandcamp"),
 *   urlPrefix = "",
 * )
 */
class Bandcamp extends PlatformBase {}

devil2005’s picture

Hello,

It could be cool if we can add own service in back office directly :) (one icon, one link and it's done with 3 clicks :p)

Thanks a lot

Neslee Canil Pinto’s picture

Status: Active » Closed (works as designed)