You are here

DrupalSettingCommandsInterface.php in Googalytics - Google Analytics 8

File

src/AnalyticsCommand/DrupalSettingCommandsInterface.php
View source
<?php

namespace Drupal\ga\AnalyticsCommand;


/**
 * Interface AnalyticsCommandSetInterface.
 */
interface DrupalSettingCommandsInterface {

  /**
   * An integer value for sorting by priority.
   *
   * @return int
   *   The priority value.
   */
  public function getPriority();

  /**
   * An array of commands to be sent to Google Analytics.
   *
   * @return array
   *   An array of command values.
   */
  public function getSettingCommands();

}

Interfaces

Namesort descending Description
DrupalSettingCommandsInterface Interface AnalyticsCommandSetInterface.