You are here

profile_stat_sender.install in Brainstorm profile 8

Installation hooks.

File

module/custom/profile_stat_sender/profile_stat_sender.install
View source
<?php

/**
 * @file
 * Installation hooks.
 */

/**
 * Implements hook_install().
 */
function profile_stat_sender_install() {
  $sender = \Drupal::service('profile_stat_sender.statistics_sender');
  $sender
    ->sendData();
}

Functions

Namesort descending Description
profile_stat_sender_install Implements hook_install().