You are here

simple_facebook_pixel.api.php in Simple Facebook Pixel 8

Hooks specific to the Simple Facebook Pixel module.

File

simple_facebook_pixel.api.php
View source
<?php

/**
 * @file
 * Hooks specific to the Simple Facebook Pixel module.
 */

/**
 * Alter the events array.
 *
 * @param array $events
 *   The events array.
 */
function hook_simple_facebook_pixel_events_alter(array &$events) {
  if (isset($events[0]['data']['content_name'])) {
    $events[0]['data']['content_name'] = 'Altered name';
  }
}

/**
 * Alter the script code for pages.
 *
 * @param string $script_code
 *   The script code.
 */
function hook_simple_facebook_pixel_script_code_alter(&$script_code) {
  $script_code = 'Altered script code';
}

/**
 * Alter the noscript code for pages.
 *
 * @param string $noscript_code
 *   The noscript code.
 */
function hook_simple_facebook_pixel_noscript_code_alter(&$noscript_code) {
  $noscript_code = 'Altered noscript code';
}

Functions

Namesort descending Description
hook_simple_facebook_pixel_events_alter Alter the events array.
hook_simple_facebook_pixel_noscript_code_alter Alter the noscript code for pages.
hook_simple_facebook_pixel_script_code_alter Alter the script code for pages.