You are here

BlogListerInterface.php in Blog 8.2

Same filename and directory in other branches
  1. 3.x src/BlogListerInterface.php

Namespace

Drupal\blog

File

src/BlogListerInterface.php
View source
<?php

namespace Drupal\blog;

use Drupal\user\UserInterface;

/**
 * Provides an interface defining a blog lister.
 */
interface BlogListerInterface {

  /**
   * Returns a title for a user blog.
   */
  public function userBlogTitle(UserInterface $user);

}

Interfaces

Namesort descending Description
BlogListerInterface Provides an interface defining a blog lister.