19 lines
384 B
PHP
19 lines
384 B
PHP
<?php
|
|
|
|
namespace KupShop\RecommendersBundle\Translations;
|
|
|
|
use KupShop\I18nBundle\Translations\BaseTranslation;
|
|
|
|
class RecommendersTranslation extends BaseTranslation
|
|
{
|
|
protected $columns = [
|
|
'title' => ['alias' => 'Nadpis', 'maxlength' => 100],
|
|
];
|
|
|
|
protected $tableName = 'recommenders';
|
|
|
|
protected $tableAlias = 're';
|
|
|
|
protected $nameColumn = 'title';
|
|
}
|