You are here

ActivationCheckInterface.php in jQuery World Calendars API 3.x

File

src/ActivationCheckInterface.php
View source
<?php

namespace Drupal\jquery_calendar;


/**
 * An interface for checking if library should be active.
 */
interface ActivationCheckInterface {

  /**
   * Check if library should be activated for the current page.
   *
   * @return bool
   *   If library should be active.
   */
  public function isActive();

}

Interfaces

Namesort descending Description
ActivationCheckInterface An interface for checking if library should be active.