MetaModels\Filter\Setting\CustomSql::parseInsertTagsInternal PHP Метод

parseInsertTagsInternal() приватный Метод

Replace all insert tags in the query string.
private parseInsertTagsInternal ( string $queryString ) : string
$queryString string The string to replace insert tags within.
Результат string
    private function parseInsertTagsInternal($queryString)
    {
        $dispatcher = $this->getEventDispatcher();
        $event = new ReplaceInsertTagsEvent($queryString, false);
        $dispatcher->dispatch(ContaoEvents::CONTROLLER_REPLACE_INSERT_TAGS, $event);
        return $event->getBuffer();
    }