DebugKit\DebugPanel::elementName PHP Method

elementName() public method

Get the element name for the panel.
public elementName ( ) : string
return string
    public function elementName()
    {
        list($ns, $name) = namespaceSplit(get_class($this));
        if ($this->plugin) {
            return $this->plugin . '.' . Inflector::underscore($name);
        }
        return Inflector::underscore($name);
    }