Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
CRAP | |
0.00% |
0 / 11 |
SyndicateBlock | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
12 | |
0.00% |
0 / 11 |
defaultConfiguration | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 4 |
|||
blockAccess | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
build | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 5 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\node\Plugin\Block\SyndicateBlock. | |
*/ | |
namespace Drupal\node\Plugin\Block; | |
use Drupal\Core\Access\AccessResult; | |
use Drupal\Core\Block\BlockBase; | |
use Drupal\Core\Session\AccountInterface; | |
/** | |
* Provides a 'Syndicate' block that links to the site's RSS feed. | |
* | |
* @Block( | |
* id = "node_syndicate_block", | |
* admin_label = @Translation("Syndicate"), | |
* category = @Translation("System") | |
* ) | |
*/ | |
class SyndicateBlock extends BlockBase { | |
/** | |
* {@inheritdoc} | |
*/ | |
public function defaultConfiguration() { | |
return array( | |
'block_count' => 10, | |
); | |
} | |
/** | |
* {@inheritdoc} | |
*/ | |
protected function blockAccess(AccountInterface $account) { | |
return AccessResult::allowedIfHasPermission($account, 'access content'); | |
} | |
/** | |
* {@inheritdoc} | |
*/ | |
public function build() { | |
return array( | |
'#theme' => 'feed_icon', | |
'#url' => 'rss.xml', | |
); | |
} | |
} |