settings = $settings; } /** * Check if CCPA is enabled */ public function isEnabled(): bool { return 'on' === ($this->settings['ccpa_enabled'] ?? ''); } /** * Register WordPress hooks */ public function registerHooks(): void { // TODO: Implement CCPA-specific hooks when needed } /** * Get consent status */ public function getConsentStatus(): string { // TODO: Implement CCPA consent status checking return 'not-implemented'; } }