Gdn_Plugin::makeMetaKey PHP Method

makeMetaKey() protected method

For example, 'Sig' becomes 'Plugin.Signatures.Sig'
protected makeMetaKey ( string $relativeUserKey ) : string
$relativeUserKey string The relative user meta key.
return string Returns a fully qualified meta key.
    protected function makeMetaKey($relativeUserKey)
    {
        $result = implode('.', ['Plugin', $this->getPluginIndex(), $this->trimMetaKey($relativeUserKey)]);
        return $result;
    }