user_materio user_block cache max-age 0

This commit is contained in:
Bachir Soussi Chiadmi 2024-10-28 14:59:57 +01:00
parent 5c40959059
commit 8b2c26774f

View File

@ -50,6 +50,11 @@ class UserBlock extends BlockBase implements ContainerFactoryPluginInterface{
*/
public function build() {
$build = [];
$build['#cache'] = [
'max-age' => 0,
];
// dpm($this->user);
if($this->user->id()){
$user_url = Url::fromRoute('entity.user.canonical', ['user' => $this->user->id()]);
@ -76,6 +81,8 @@ class UserBlock extends BlockBase implements ContainerFactoryPluginInterface{
)
)
);
}
return $build;
}