Gdn_Plugin::render PHP Method

render() public method

This render method automatically adds the correct ApplicationFolder parameter so that $Sender->Render() will first check the plugin's views/ folder.
public render ( string $view )
$view string The name of the view to render.
    public function render($view)
    {
        $pluginFolder = $this->getPluginFolder(false);
        $this->Sender->render($view, '', $pluginFolder);
    }