Same filename and directory in other branches
  1. 5.0.x advagg_cdn/advagg_cdn.install 1 commentaire
  2. 8.x-3.x advagg_cdn/advagg_cdn.install 1 commentaire
  3. 8.x-4.x advagg_cdn/advagg_cdn.install 1 commentaire

Handles Advanced Aggregation installation and upgrade tasks.

Fichier

advagg_cdn/advagg_cdn.install

View source
<?php


/**
 * @file
 * Handles Advanced Aggregation installation and upgrade tasks.
 */

/**
 * Implements hook_requirements().
 */
function advagg_cdn_requirements($phase) {
    $requirements = [];
    // Ensure translations don't break at install time.
    $t = 't';
    // If not at runtime, return here.
    if ($phase !== 'runtime') {
        return $requirements;
    }
    $description = '';
    if (\Drupal::config('advagg.settings')->get('cache_level') < 0) {
        $description = $t('Will be using the unminified version due to AdvAgg being in Development mode.');
    }
    $requirements['advagg_cdn'] = [
        'title' => $t('AdvAgg CDN'),
        'severity' => REQUIREMENT_OK,
        'value' => $t('OK'),
        'description' => $t('Selected libraries should be coming from the CDN.') . ' ' . $description,
    ];
    return $requirements;
}

Functions

Titre Deprecated Résumé
advagg_cdn_requirements Implements hook_requirements().