19 lines
407 B
PHP
19 lines
407 B
PHP
<?php
|
|
|
|
namespace KupShop\OrderDiscountBundle\Translations;
|
|
|
|
use KupShop\I18nBundle\Translations\BaseTranslation;
|
|
|
|
class OrderDiscountsTranslation extends BaseTranslation
|
|
{
|
|
protected $columns = [
|
|
'display_name' => ['alias' => 'Název v košíku', 'maxlength' => 100],
|
|
];
|
|
|
|
protected $tableName = 'order_discounts';
|
|
|
|
protected $tableAlias = 'od';
|
|
|
|
protected $nameColumn = 'name';
|
|
}
|