PostPhotoProfileBlock.php in Open Social 10.3.x
Same filename and directory in other branches
- 8.9 modules/social_features/social_post/modules/social_post_photo/src/Plugin/Block/PostPhotoProfileBlock.php
- 8 modules/social_features/social_post/modules/social_post_photo/src/Plugin/Block/PostPhotoProfileBlock.php
- 8.2 modules/social_features/social_post/modules/social_post_photo/src/Plugin/Block/PostPhotoProfileBlock.php
- 8.3 modules/social_features/social_post/modules/social_post_photo/src/Plugin/Block/PostPhotoProfileBlock.php
- 8.4 modules/social_features/social_post/modules/social_post_photo/src/Plugin/Block/PostPhotoProfileBlock.php
- 8.5 modules/social_features/social_post/modules/social_post_photo/src/Plugin/Block/PostPhotoProfileBlock.php
- 8.6 modules/social_features/social_post/modules/social_post_photo/src/Plugin/Block/PostPhotoProfileBlock.php
- 8.7 modules/social_features/social_post/modules/social_post_photo/src/Plugin/Block/PostPhotoProfileBlock.php
- 8.8 modules/social_features/social_post/modules/social_post_photo/src/Plugin/Block/PostPhotoProfileBlock.php
- 10.0.x modules/social_features/social_post/modules/social_post_photo/src/Plugin/Block/PostPhotoProfileBlock.php
- 10.1.x modules/social_features/social_post/modules/social_post_photo/src/Plugin/Block/PostPhotoProfileBlock.php
- 10.2.x modules/social_features/social_post/modules/social_post_photo/src/Plugin/Block/PostPhotoProfileBlock.php
Namespace
Drupal\social_post_photo\Plugin\BlockFile
modules/social_features/social_post/modules/social_post_photo/src/Plugin/Block/PostPhotoProfileBlock.phpView source
<?php
namespace Drupal\social_post_photo\Plugin\Block;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Form\FormBuilderInterface;
use Drupal\Core\Session\AccountProxyInterface;
use Drupal\social_post\Plugin\Block\PostProfileBlock;
/**
* Provides a 'PostPhotoProfileBlock' block.
*
* @Block(
* id = "post_photo_profile_block",
* admin_label = @Translation("Post photo on profile of others block"),
* )
*/
class PostPhotoProfileBlock extends PostProfileBlock {
/**
* {@inheritdoc}
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager, AccountProxyInterface $current_user, FormBuilderInterface $form_builder, ModuleHandlerInterface $module_handler, $account) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $entity_type_manager, $current_user, $form_builder, $module_handler, $account);
// Override the bundle type.
$this->bundle = 'photo';
}
}
Classes
Name | Description |
---|---|
PostPhotoProfileBlock | Provides a 'PostPhotoProfileBlock' block. |