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.
|
<?php |
|
|
|
class AfterUninstall |
|
{ |
|
protected $container; |
|
|
|
public function run($container) |
|
{ |
|
$this->container = $container; |
|
|
|
$this->clearCache(); |
|
} |
|
|
|
protected function clearCache() |
|
{ |
|
try { |
|
$this->container->get('dataManager')->clearCache(); |
|
} catch (\Exception $e) { |
|
} |
|
} |
|
}
|
|
|