14 lines
268 B
PHP
14 lines
268 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace D3\ManufacturerInformation\Application\Model;
|
||
|
|
||
|
|
||
|
class Constants
|
||
|
{
|
||
|
public const OXID_MODULE_ID = 'd3manufacturerinformation';
|
||
|
|
||
|
// Tables and Database
|
||
|
public const D3_OXMANUFACTURERS_LONGDESC_FIELDNAME = 'D3DESCRIPTION';
|
||
|
}
|