Add the ability to deactivate the module + handle deletion of a node

Created on 29 February 2024, about 1 year ago
Updated 4 July 2024, 9 months ago

Problem/Motivation

Just like the SMTP module, this should provide a config setting to turn the functionality off.

Feature request
Status

Needs work

Version

1.0

Component

Code

Created by

🇭🇺Hungary aron novak Hungary, Budapest

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @aron novak
  • Merge request !4Status flag + deletion of the node → (Open) created by aron novak
  • Status changed to Needs work 10 months ago
  • 🇨🇦Canada smulvih2 Canada 🍁

    @aron this is a great improvement, thanks for MR! Are you able to add a hook_update() to set the new config to TRUE? This way existing sites upgrading the module will not unknowingly disable the purger.

  • 🇨🇦Canada smulvih2 Canada 🍁

    Something like this (untested):

    /**
     * Set status to TRUE for Azure CDN Purge settings.
     */
    function azure_cdn_purge_update_9104() {
      // Set the default value of the 'status' setting to true.
      \Drupal::configFactory()->getEditable('azure_cdn_purge.settings')
        ->set('status', TRUE)
        ->save();
    
      // Log the update.
      \Drupal::logger('azure_cdn_purge')->info('Set default status to enabled for azure_cdn_purge.settings.');
    }
    
Production build 0.71.5 2024