function RulesPlugin::elementId

Returns the element id, which identifies the element inside the config.

File

includes/rules.core.inc, line 539

Class

RulesPlugin
Base class for rules plugins.

Code

public function elementId() {
    if (!isset($this->elementId)) {
        $this->elementMap()
            ->index();
    }
    return $this->elementId;
}