Пример #1
0
 public function __construct($fieldName, $name, $entityName, $translation = null, $joins = [], $disabled = false, $default = false, $type = '', $width = '', $minWidth = '', $sortable = true, $editable = false, $cssClass = '')
 {
     parent::__construct($name, $translation, $disabled, $default, $type, $width, $minWidth, $sortable, $editable, $cssClass);
     $this->fieldName = $fieldName;
     $this->entityName = $entityName;
     $this->joins = $joins;
 }
 public function __construct(DoctrineFieldDescriptorInterface $fieldDescriptor, $name, $translation = null, $glue = ',', $disabled = false, $default = false, $type = '', $width = '', $minWidth = '', $sortable = true, $editable = false, $cssClass = '')
 {
     parent::__construct($name, $translation, $disabled, $default, $type, $width, $minWidth, $sortable, $editable, $cssClass);
     $this->fieldDescriptor = $fieldDescriptor;
     $this->glue = $glue;
 }
 public function __construct(array $fieldDescriptors, $name, $translation = null, $glue = ' ', $disabled = false, $default = false, $type = '', $width = '', $minWidth = '', $sortable = true, $editable = false, $cssClass = '')
 {
     parent::__construct($name, $translation, $disabled, $default, $type, $width, $minWidth, $sortable, $editable, $cssClass);
     $this->fieldDescriptors = $fieldDescriptors;
     $this->glue = $glue;
 }
Пример #4
0
 public function __construct($name, DoctrineDescriptor $case1, DoctrineDescriptor $case2, $translation = null, $disabled = false, $default = false, $type = '', $width = '', $minWidth = '', $sortable = true, $editable = false, $cssClass = '')
 {
     parent::__construct($name, $translation, $disabled, $default, $type, $width, $minWidth, $sortable, $editable, $cssClass);
     $this->case1 = $case1;
     $this->case2 = $case2;
 }