17 lines
232 B
PHP
17 lines
232 B
PHP
<?php
|
|
|
|
namespace Model;
|
|
|
|
trait CustomFieldTrait
|
|
{
|
|
public function getObjectName()
|
|
{
|
|
return $this->objectName;
|
|
}
|
|
|
|
public function isCustomFieldsEnabled()
|
|
{
|
|
return $this->allowCustomFields;
|
|
}
|
|
}
|