BaloneySpam.php
Same filename in other branches
Namespace
Drupal\block_test\Plugin\ConditionFile
-
core/
modules/ block/ tests/ modules/ block_test/ src/ Plugin/ Condition/ BaloneySpam.php
View source
<?php
namespace Drupal\block_test\Plugin\Condition;
use Drupal\Core\Condition\ConditionPluginBase;
/**
* Provides a 'baloney_spam' condition.
*
* @Condition(
* id = "baloney_spam",
* label = @Translation("Baloney spam"),
* )
*/
class BaloneySpam extends ConditionPluginBase {
/**
* {@inheritdoc}
*/
public function evaluate() {
return TRUE;
}
/**
* {@inheritdoc}
*/
public function summary() {
return 'Summary';
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
BaloneySpam | Provides a 'baloney_spam' condition. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.