You are here

youtubechannelblock.php in YoutubeChannel 8.3

File

src/Plugin/Block/youtubechannelblock.php
View source
<?php

namespace Drupal\youtubechannel\Plugin\Block;

use Drupal\Core\Block\BlockBase;
use Drupal\Core\Block\BlockPluginInterface;

/**
 * @Block(
 *   id = "youtubechannel_block",
 *   admin_label = @Translation("Youtube Channel"),
 * )
 */
class Youtubechannelblock extends BlockBase {

  /**
   * {@inheritdoc}
   */
  public function build() {
    return [
      '#theme' => 'youtubechannel_block',
    ];
  }

}

Classes

Namesort descending Description
Youtubechannelblock Plugin annotation @Block( id = "youtubechannel_block", admin_label = @Translation("Youtube Channel"), )