You are here

public function AcquiaLiftTarget::getAssets in Acquia Lift Connector 7

Same name and namespace in other branches
  1. 7.2 plugins/agent_types/AcquiaLiftTarget.inc \AcquiaLiftTarget::getAssets()

Implements PersonalizeAgentInterface::getAssets().

File

plugins/agent_types/AcquiaLiftTarget.inc, line 35
Provides an agent for doing fixed targeting.

Class

AcquiaLiftTarget
@file Provides an agent for doing fixed targeting.

Code

public function getAssets() {
  return array(
    'js' => array(
      drupal_get_path('module', 'acquia_lift') . '/js/acquia_lift_target.js' => array(
        'type' => 'file',
        'scope' => 'footer',
        'defer' => TRUE,
      ),
    ),
  );
}