db = $db; add_action( 'init', [ $this, 'init' ] ); } /** * Initialize class functions. */ public function init() { add_action( 'wp_head', [ $this, 'load_head_content' ] ); add_action( 'wp_body_open', [ $this, 'load_body_content' ] ); add_action( 'wp_footer', [ $this, 'load_footer_content' ] ); } /** * Populate the active snippets cache. * * This function fetches active snippets from the database and stores them in the * $active_snippets property. */ private function populate_active_snippets() { $scopes = [ 'head-content', 'body-content', 'footer-content' ]; $snippets = $this->db->fetch_active_snippets( $scopes ); foreach ( $snippets as $snippet ) { $scope = $snippet['scope']; if ( 'condition' !== $scope ) { $this->active_snippets[ $scope ][] = $snippet; } } } /** * Print snippet code fetched from the database from a certain scope. * * @param string $scope Name of scope to print. */ private function print_content_snippets( string $scope ) { if ( is_null( $this->active_snippets ) ) { if ( Snippet_Files::is_active() ) { $this->populate_active_snippets_from_flat_files(); } else { $this->populate_active_snippets(); } } if ( ! isset( $this->active_snippets[ $scope ] ) ) { return; } foreach ( $this->active_snippets[ $scope ] as $snippet ) { if ( isset( $snippet['id'] ) ) { do_action( 'code_snippets/snippet_ran_on_page', (int) $snippet['id'], 'content' ); } if ( Snippet_Files::is_active() ) { require_once $snippet['file_path']; } else { // phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped echo "\n", $snippet['code'], "\n"; } } } /** * Print head content snippets. * * @return void */ public function load_head_content() { $this->print_content_snippets( 'head-content' ); } /** * Print body content snippets (requires theme to call wp_body_open). * * @return void */ public function load_body_content() { $this->print_content_snippets( 'body-content' ); } /** * Print footer content snippets. * * @return void */ public function load_footer_content() { $this->print_content_snippets( 'footer-content' ); } /** * Populate the active snippets from flat files. * * @return void */ private function populate_active_snippets_from_flat_files() { $handler = code_snippets()->snippet_handler_registry->get_handler( 'html' ); $dir_name = $handler->get_dir_name(); $ext = $handler->get_file_extension(); $scopes = [ 'head-content', 'body-content', 'footer-content' ]; $all_snippets = Snippet_Files::get_active_snippets_from_flat_files( $scopes, $dir_name ); foreach ( $all_snippets as $snippet ) { $scope = $snippet['scope']; if ( 'condition' !== $scope ) { // Add file path information to the snippet for later use. $table_name = Snippet_Files::get_hashed_table_name( $snippet['table'] ); $base_path = Snippet_Files::get_base_dir( $table_name, $dir_name ); $snippet['file_path'] = $base_path . '/' . $snippet['id'] . '.' . $ext; $this->active_snippets[ $scope ][] = $snippet; } } } }