1
0
Fork 0
EspoCRM extension that adds a custom type field which allows to dynamically create a checklist inside any EspoCRM entity
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

21 lines
345 B

<?php
class AfterInstall
{
protected $container;
public function run($container)
{
$this->container = $container;
$this->clearCache();
}
protected function clearCache()
{
try {
$this->container->get('dataManager')->clearCache();
} catch (\Exception $e) {
}
}
}