1 | <?php |
||
16 | class Row |
||
17 | { |
||
18 | /** @var array Collection of additional fields identifiers */ |
||
19 | protected static $fieldIDs = array(); |
||
20 | /** @var int Material primary identifier */ |
||
21 | public $primary; |
||
22 | /** @var array Field table row fields collection */ |
||
23 | protected $collection; |
||
24 | |||
25 | /** |
||
26 | * Row constructor. |
||
27 | * |
||
28 | * @param int $primary Material entity identifier |
||
29 | * @param array $collection Collection of row additional field values |
||
30 | */ |
||
31 | public function __construct($primary, array $collection) |
||
44 | } |
||
45 |