cmlapi-8.x-1.2/cmlapi.module
cmlapi.module
<?php
/**
* @file
* cmlapi.module
*/
use Drupal\cmlapi\Entity\CmlEntityInterface;
use Drupal\cmlapi\Hook\Cron;
use Drupal\cmlapi\Hook\CmlInsert;
/**
* Hook cron.
*/
function cmlapi_cron() {
Cron::hook();
}
/**
* Hook insert.
*/
function cmlapi_cml_insert(CmlEntityInterface $entity) {
CmlInsert::hook();
}
