TemplateConverter::getAllTagsFromTemplate PHP Method

getAllTagsFromTemplate() private method

Gets all the tags from the source template.
private getAllTagsFromTemplate ( $p_pattern ) : array
return array $matches
    private function getAllTagsFromTemplate($p_pattern)
    {
        preg_match_all($p_pattern, $this->m_templateOriginalContent, $matches);
        return $matches;
    }