mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
18 lines
477 B
PHP
18 lines
477 B
PHP
<?php
|
|
/* crmv@198038 */
|
|
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
|
|
/**
|
|
* Provides API to work with vtiger CRM Modules
|
|
* @package vtlib
|
|
*/
|
|
class Vtiger_Module extends Vtecrm_Module {
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
logDeprecated('Deprecated class Vtiger_Module used');
|
|
}
|
|
} |