Gdn_Plugin::autoTogglePath PHP Method

autoTogglePath() public method

public autoTogglePath ( null $Path = null ) : null | string
$Path null
return null | string
    public function autoTogglePath($Path = null)
    {
        deprecated('Gdn_Plugin->autoTogglePath()');
        if (is_null($Path)) {
            $PluginName = $this->getPluginIndex();
            $Path = '/dashboard/plugin/' . strtolower($PluginName) . '/toggle/' . Gdn::session()->transientKey();
        }
        return $Path;
    }