You are here

public function RulesComponentConfig::hasTags in Rules 8.3

Checks if there are tags associated with this config.

Return value

bool TRUE if the config has tags.

File

src/Entity/RulesComponentConfig.php, line 249

Class

RulesComponentConfig
Rules component configuration entity to persistently store configuration.

Namespace

Drupal\rules\Entity

Code

public function hasTags() {
  return !empty($this->tags);
}