markdown .../class-frontend.php markdown Version: 3.8.1 markdown Checked in by: codesnippetspro Date: 4 weeks ago Commit: 3381994 markdown Front_End markdown SOURCE_SHORTCODE = 'code_snippet_source' CONTENT_SHORTCODE = 'code_snippet' PRISM_HANDLE = 'code-snippets-prism' php private function evaluate_shortcode_from_db(Snippet $snippet, array $atts): string { ... eval("?>\n\n" . $snippet->code ); return ob_get_clean(); } html Regarding the Code Snippets Plugin Code Snippets primarily manages code snippets on the WordPress platform and provides them to the frontend via shortcodes and REST API. Based on the code and related methods, there is a risk of PHP code injection vulnerability. ```