Rarst\Meadow\Core::get_search_form PHP Method

get_search_form() public method

public get_search_form ( string $form ) : string
$form string
return string
    public function get_search_form($form)
    {
        // because first time it's action
        if (!empty($form)) {
            /** @var \Twig_Environment $twig */
            $twig = $this['twig.environment'];
            return $twig->render('searchform.twig', array());
        }
        return $form;
    }