mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
9 lines
292 B
PHP
9 lines
292 B
PHP
<?php
|
|
if (!isModuleInstalled('Employees')) {
|
|
require_once('vtlib/Vtecrm/Package.php');
|
|
$package = new Vtiger_Package();
|
|
$package->importByManifest('Employees');
|
|
} else {
|
|
Update::warn('Module Employees is already installed. Please remove it and install the new one.');
|
|
Update::warn('');
|
|
} |