PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/v1world.us/wp-content/themes/neve/inc/compatibility/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : //home/trave494/v1world.us/wp-content/themes/neve/inc/compatibility/patterns.php |
<?php /** * Patterns Compatibility. * * @package Patterns.php */ namespace Neve\Compatibility; /** * Class Patterns * * @package Neve\Compatibility */ class Patterns { /** * Define list of the patterns to load. * * @var string[] Patterns list. */ private $patterns = [ 'dark-header-centered-content', 'two-columns-image-text', 'three-columns-images-text', 'three-columns-images-text', 'three-columns-images-texts-content', 'four-columns-team-members', 'two-columns-centered-content', 'two-columns-with-text', 'testimonials-columns', 'gallery-grid-buttons', 'gallery-title-buttons', 'light-header-left-aligned-content', ]; /** * Register patterns bootstrap hook. */ public function init() { add_action( 'admin_init', [ $this, 'define_patterns' ] ); } /** * Load patterns. */ public function define_patterns() { if ( ! function_exists( 'register_block_pattern' ) ) { return; } foreach ( $this->patterns as $pattern ) { register_block_pattern( 'neve/' . $pattern, require __DIR__ . '/block-patterns/' . $pattern . '.php' ); } } }