feat: initial ACRIB WordPress deployment

- WordPress 6.9.4 (es_ES) with Kadence theme
- Homepage: Hero, La Asociación, Pilares, Beneficios, Eventos, Miembros, Hazte Miembro, Contacto
- Brand identity: #13294b navy, #a12932 burgundy, #c69c48 gold
- Fonts: Raleway (headings) + Source Sans 3 (body) + Lato (UI)
- Plugins: Kadence Blocks, Polylang, Contact Form 7
- Custom CSS with full brand styling and responsive layout
- HTTPS enforced via wp-config.php proxy detection
This commit is contained in:
Malin
2026-05-19 19:25:59 +02:00
commit f3ff7b7186
6119 changed files with 1984255 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
<?php declare( strict_types=1 );
namespace KadenceWP\KadenceBlocks\Optimizer\Store;
use KadenceWP\KadenceBlocks\Optimizer\Store\Cached_Store_Decorator;
use KadenceWP\KadenceBlocks\Optimizer\Store\Contracts\Store;
use KadenceWP\KadenceBlocks\Optimizer\Store\Excluded_Store_Decorator;
use KadenceWP\KadenceBlocks\Optimizer\Store\Expired_Store_Decorator;
use KadenceWP\KadenceBlocks\Optimizer\Store\Status_Sync_Store_Decorator;
use KadenceWP\KadenceBlocks\Optimizer\Store\Table_Store;
use KadenceWP\KadenceBlocks\StellarWP\ProphecyMonorepo\Container\Contracts\Provider as Provider_Contract;
final class Provider extends Provider_Contract {
public function register(): void {
// Decorator chain (bottom-up execution, each wraps the one below):
// When calling Store methods, execution flows TOP to BOTTOM through decorators.
//
// Reads (get): Expired → Cache → Excluded → Status_Sync → Table
// Writes (set): Expired → Cache → Excluded (blocks excluded) → Status_Sync (pure) → Table
//
// Critical ordering:
// 1. Expired MUST be outermost to filter stale data even from cache.
// 2. Excluded MUST be before Status_Sync so sync logic stays pure.
$this->container->bindDecorators(
Store::class,
[
Expired_Store_Decorator::class,
Cached_Store_Decorator::class,
Excluded_Store_Decorator::class,
Status_Sync_Store_Decorator::class,
Table_Store::class,
]
);
}
}