public function PiwikReportsBlock::build in Piwik Reports 8
Builds and returns the renderable array for this block plugin.
If a block should not be rendered because it has no content, then this method must also ensure to return no content: it must then only return an empty array, or an empty array with #cache set (with cacheability metadata indicating the circumstances for it being empty).
Return value
array A renderable array representing the content of the block.
Overrides BlockPluginInterface::build
See also
\Drupal\block\BlockViewBuilder
File
- src/
Plugin/ Block/ PiwikReportsBlock.php, line 38
Class
- PiwikReportsBlock
- Provides a 'PiwikReportsBlock' block.
Namespace
Drupal\piwik_reports\Plugin\BlockCode
public function build() {
$renderer = \Drupal::service('renderer');
$current_user = \Drupal::currentUser();
$build = [];
if (!\Drupal::moduleHandler()
->moduleExists('matomo')) {
$build['#markup'] = $this
->t('To use this block, you need to install the <a href=":url">Matomo</a> module', array(
':url' => 'https://www.drupal.org/project/matomo',
));
return $build;
}
// Build the data URL with all params.
$token_auth = PiwikData::getToken();
$piwik_url = PiwikData::getUrl();
// message when no token?
if (empty($piwik_url)) {
$build['#markup'] = $this
->t('Please configure the <a href=":url">Matomo settings</a> to use this block.', array(
':url' => '/admin/config/system/matomo',
));
return $build;
}
$data_params = [];
$data_params['idSite'] = \Drupal::config('matomo.settings')
->get('site_id');
$data_params['date'] = 'today';
$data_params['period'] = 'year';
$data_params['module'] = 'API';
$data_params['method'] = 'Actions.getPageUrl';
$data_params['pageUrl'] = urldecode($_SERVER['REQUEST_URI']);
$data_params['format'] = 'JSON';
if (!empty($token_auth)) {
$data_params['token_auth'] = $token_auth;
}
$query_string = http_build_query($data_params);
$build['#markup'] = '<div id="piwikpageviews"></div>';
$build['#attached']['library'][] = 'piwik_reports/piwikreports';
$build['#attached']['drupalSettings']['piwik_reports']['piwikJS']['url'] = $piwik_url;
$build['#attached']['drupalSettings']['piwik_reports']['piwikJS']['query_string'] = $query_string;
$build['#cache']['contexts'] = [
'user',
'url',
];
$renderer
->addCacheableDependency($build, \Drupal\user\Entity\User::load($current_user
->id()));
return $build;
}