ActivationCheckInterface.php in jQuery World Calendars API 3.x
Namespace
Drupal\jquery_calendarFile
src/ActivationCheckInterface.phpView 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
Name | Description |
---|---|
ActivationCheckInterface | An interface for checking if library should be active. |