class HeartbeatController in Heartbeat 8
Class HeartbeatController.
Returns responses for Heartbeat routes.
@package Drupal\heartbeat\Controller
Hierarchy
- class \Drupal\Core\Controller\ControllerBase implements ContainerInjectionInterface uses LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\heartbeat\Controller\HeartbeatController
Expanded class hierarchy of HeartbeatController
File
- src/
Controller/ HeartbeatController.php, line 27
Namespace
Drupal\heartbeat\ControllerView source
class HeartbeatController extends ControllerBase {
private $renderer;
private $blockManager;
/**
* @param ContainerInterface $container
* @return static
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('renderer'), $container
->get('plugin.manager.block'));
}
/**
* HeartbeatController constructor.
* @param Renderer $renderer
* @param BlockManager $block_manager
*/
public function __construct(Renderer $renderer, BlockManager $block_manager) {
$this->renderer = $renderer;
$this->blockManager = $block_manager;
}
/**
* Displays a Heartbeat revision.
*
* @param int $heartbeat_revision
* The Heartbeat revision ID.
*
* @return array
* An array suitable for drupal_render().
*/
public function revisionShow($heartbeat_revision) {
$heartbeat = $this
->entityManager()
->getStorage('heartbeat')
->loadRevision($heartbeat_revision);
$view_builder = $this
->entityManager()
->getViewBuilder('heartbeat');
return $view_builder
->view($heartbeat);
}
/**
* Page title callback for a Heartbeat revision.
*
* @param int $heartbeat_revision
* The Heartbeat revision ID.
*
* @return string
* The page title.
*/
public function revisionPageTitle($heartbeat_revision) {
$heartbeat = $this
->entityManager()
->getStorage('heartbeat')
->loadRevision($heartbeat_revision);
return $this
->t('Revision of %title from %date', array(
'%title' => $heartbeat
->label(),
'%date' => format_date($heartbeat
->getRevisionCreationTime()),
));
}
/**
* Generates an overview table of older revisions of a Heartbeat .
*
* @param \Drupal\heartbeat\Entity\HeartbeatInterface $heartbeat
* A Heartbeat object.
*
* @return array
* An array as expected by drupal_render().
*/
public function revisionOverview(HeartbeatInterface $heartbeat) {
$account = $this
->currentUser();
$langcode = $heartbeat
->language()
->getId();
$langname = $heartbeat
->language()
->getName();
$languages = $heartbeat
->getTranslationLanguages();
$has_translations = count($languages) > 1;
$heartbeat_storage = $this
->entityManager()
->getStorage('heartbeat');
$build['#title'] = $has_translations ? $this
->t('@langname revisions for %title', [
'@langname' => $langname,
'%title' => $heartbeat
->label(),
]) : $this
->t('Revisions for %title', [
'%title' => $heartbeat
->label(),
]);
$header = array(
$this
->t('Revision'),
$this
->t('Operations'),
);
$revert_permission = $account
->hasPermission("revert all heartbeat revisions") || $account
->hasPermission('administer heartbeat entities');
$delete_permission = $account
->hasPermission("delete all heartbeat revisions") || $account
->hasPermission('administer heartbeat entities');
$rows = array();
$vids = $heartbeat_storage
->revisionIds($heartbeat);
$latest_revision = TRUE;
foreach (array_reverse($vids) as $vid) {
/** @var \Drupal\heartbeat\HeartbeatInterface $revision */
$revision = $heartbeat_storage
->loadRevision($vid);
// Only show revisions that are affected by the language that is being
// displayed.
if ($revision
->hasTranslation($langcode) && $revision
->getTranslation($langcode)
->isRevisionTranslationAffected()) {
$username = [
'#theme' => 'username',
'#account' => $revision
->getRevisionUser(),
];
// Use revision link to link to revisions that are not active.
$date = \Drupal::service('date.formatter')
->format($revision->revision_timestamp->value, 'short');
if ($vid != $heartbeat
->getRevisionId()) {
$link = $this
->l($date, new Url('entity.heartbeat.revision', [
'heartbeat' => $heartbeat
->id(),
'heartbeat_revision' => $vid,
]));
}
else {
$link = $heartbeat
->link($date);
}
$row = [];
$column = [
'data' => [
'#type' => 'inline_template',
'#template' => '{% trans %}{{ date }} by {{ username }}{% endtrans %}{% if message %}<p class="revision-log">{{ message }}</p>{% endif %}',
'#context' => [
'date' => $link,
'username' => \Drupal::service('renderer')
->renderPlain($username),
'message' => [
'#markup' => $revision->revision_log_message->value,
'#allowed_tags' => Xss::getHtmlTagList(),
],
],
],
];
$row[] = $column;
if ($latest_revision) {
$row[] = [
'data' => [
'#prefix' => '<em>',
'#markup' => $this
->t('Current revision'),
'#suffix' => '</em>',
],
];
foreach ($row as &$current) {
$current['class'] = [
'revision-current',
];
}
$latest_revision = FALSE;
}
else {
$links = [];
if ($revert_permission) {
$links['revert'] = [
'title' => $this
->t('Revert'),
'url' => $has_translations ? Url::fromRoute('entity.heartbeat.translation_revert', [
'heartbeat' => $heartbeat
->id(),
'heartbeat_revision' => $vid,
'langcode' => $langcode,
]) : Url::fromRoute('entity.heartbeat.revision_revert', [
'heartbeat' => $heartbeat
->id(),
'heartbeat_revision' => $vid,
]),
];
}
if ($delete_permission) {
$links['delete'] = [
'title' => $this
->t('Delete'),
'url' => Url::fromRoute('entity.heartbeat.revision_delete', [
'heartbeat' => $heartbeat
->id(),
'heartbeat_revision' => $vid,
]),
];
}
$row[] = [
'data' => [
'#type' => 'operations',
'#links' => $links,
],
];
}
$rows[] = $row;
}
}
$build['heartbeat_revisions_table'] = array(
'#theme' => 'table',
'#rows' => $rows,
'#header' => $header,
);
return $build;
}
public function renderFeed($arg) {
$myConfig = \Drupal::service('config.factory')
->getEditable('heartbeat_feed.settings');
$myConfig
->set('message', $arg)
->save();
\Drupal::logger('HeartbeatController')
->debug('My argument is %arg', [
'%arg' => $arg,
]);
return BlockViewBuilder::lazyBuilder('heartbeatblock', 'full');
}
public function updateFeed($hid) {
$myConfig = \Drupal::service('config.factory')
->getEditable('heartbeat_more.settings');
$myConfig
->set('hid', $hid)
->save();
$block = $this->blockManager
->createInstance('heartbeat_more_block')
->build();
return [
'#type' => 'markup',
'#markup' => $this->renderer
->render($block),
];
}
public function filterFeed($tid) {
$myConfig = \Drupal::service('config.factory')
->getEditable('heartbeat_hashtag.settings');
$myConfig
->set('tid', $tid)
->save();
$block = $this->blockManager
->createInstance('heartbeat_hash_block')
->build();
return [
'#type' => 'markup',
'#markup' => $this->renderer
->render($block),
];
}
public function userFilterFeed($tid) {
$myConfig = \Drupal::service('config.factory')
->getEditable('heartbeat_username.settings');
$myConfig
->set('tid', $tid)
->save();
$block = $this->blockManager
->createInstance('heartbeat_username_block')
->build();
return [
'#type' => 'markup',
'#markup' => $this->renderer
->render($block),
];
}
public function commentConfigUpdate($entity_id) {
$commentConfig = \Drupal::configFactory()
->getEditable('heartbeat_comment.settings');
$commentConfig
->set('entity_id', $entity_id)
->save();
return [
'#type' => 'markup',
'#markup' => 'Success',
];
}
public function subCommentRequest($cid) {
$subCommentConfig = \Drupal::configFactory()
->getEditable('heartbeat_comment.settings');
$subCommentConfig
->set('cid', $cid)
->save();
$response = new AjaxResponse();
$response
->addCommand(new AppendCommand('#heartbeat-comment-' . $cid, BlockViewBuilder::lazyBuilder('heartbeatsubcommentblock', 'teaser')));
$response
->addCommand(new SubCommentCommand($cid));
return $response;
}
public function subComment() {
return BlockViewBuilder::lazyBuilder('heartbeatsubcommentblock', 'teaser');
}
public function friendInteract($uid) {
$myConfig = \Drupal::service('config.factory')
->getEditable('heartbeat_friend_interact.settings');
$myConfig
->set('uid', $uid)
->save();
// $block = BlockViewBuilder::lazyBuilder('friendinteractblock', 'full');
$block = \Drupal::service('plugin.manager.block');
$block = $block
->createInstance('friend_interact_block')
->build();
$blockMarkup = \Drupal::service('renderer')
->render($block);
return [
'#type' => 'markup',
'#markup' => $blockMarkup,
];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ControllerBase:: |
protected | property | The configuration factory. | |
ControllerBase:: |
protected | property | The current user service. | 1 |
ControllerBase:: |
protected | property | The entity form builder. | |
ControllerBase:: |
protected | property | The entity manager. | |
ControllerBase:: |
protected | property | The entity type manager. | |
ControllerBase:: |
protected | property | The form builder. | 2 |
ControllerBase:: |
protected | property | The key-value storage. | 1 |
ControllerBase:: |
protected | property | The language manager. | 1 |
ControllerBase:: |
protected | property | The module handler. | 2 |
ControllerBase:: |
protected | property | The state service. | |
ControllerBase:: |
protected | function | Returns the requested cache bin. | |
ControllerBase:: |
protected | function | Retrieves a configuration object. | |
ControllerBase:: |
private | function | Returns the service container. | |
ControllerBase:: |
protected | function | Returns the current user. | 1 |
ControllerBase:: |
protected | function | Retrieves the entity form builder. | |
ControllerBase:: |
protected | function | Retrieves the entity manager service. | |
ControllerBase:: |
protected | function | Retrieves the entity type manager. | |
ControllerBase:: |
protected | function | Returns the form builder service. | 2 |
ControllerBase:: |
protected | function | Returns a key/value storage collection. | 1 |
ControllerBase:: |
protected | function | Returns the language manager service. | 1 |
ControllerBase:: |
protected | function | Returns the module handler. | 2 |
ControllerBase:: |
protected | function |
Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: |
|
ControllerBase:: |
protected | function | Returns the state storage service. | |
HeartbeatController:: |
private | property | ||
HeartbeatController:: |
private | property | ||
HeartbeatController:: |
public | function | ||
HeartbeatController:: |
public static | function |
Overrides ControllerBase:: |
|
HeartbeatController:: |
public | function | ||
HeartbeatController:: |
public | function | ||
HeartbeatController:: |
public | function | ||
HeartbeatController:: |
public | function | Generates an overview table of older revisions of a Heartbeat . | |
HeartbeatController:: |
public | function | Page title callback for a Heartbeat revision. | |
HeartbeatController:: |
public | function | Displays a Heartbeat revision. | |
HeartbeatController:: |
public | function | ||
HeartbeatController:: |
public | function | ||
HeartbeatController:: |
public | function | ||
HeartbeatController:: |
public | function | ||
HeartbeatController:: |
public | function | HeartbeatController constructor. | |
LinkGeneratorTrait:: |
protected | property | The link generator. | 1 |
LinkGeneratorTrait:: |
protected | function | Returns the link generator. | |
LinkGeneratorTrait:: |
protected | function | Renders a link to a route given a route name and its parameters. | |
LinkGeneratorTrait:: |
public | function | Sets the link generator service. | |
LoggerChannelTrait:: |
protected | property | The logger channel factory service. | |
LoggerChannelTrait:: |
protected | function | Gets the logger for a specific channel. | |
LoggerChannelTrait:: |
public | function | Injects the logger channel factory. | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. |