27 lines
688 B
PHP
Raw Permalink Normal View History

2024-10-27 12:01:55 +01:00
<?php
2024-11-19 10:50:33 +01:00
/**
* Copyright (c) D3 Data Development (Inh. Thomas Dartsch)
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*
* https://www.d3data.de
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
* @author D3 Data Development - Max Buhe, Daniel Seifert <info@shopmodule.com>
* @link https://www.oxidmodule.com
*/
2024-10-27 12:01:55 +01:00
declare(strict_types=1);
namespace D3\ManufacturerInformation\Application\Model;
class Constants
{
2024-11-19 09:54:00 +01:00
public const OXID_MODULE_ID = 'd3manufacturerinformation';
2024-11-19 10:50:33 +01:00
2024-11-19 09:54:00 +01:00
// Tables and Database
public const D3_OXMANUFACTURERS_LONGDESC_FIELDNAME = 'd3description';
2024-11-19 10:50:33 +01:00
}