Regions\Controller\RestApi::get PHP Method

get() public method

public get ( $name = null )
    public function get($name = null)
    {
        if (!$name) {
            return false;
        }
        $content = $this->module("regions")->render($name);
        return is_null($content) ? false : $content;
    }
RestApi