| @@ 317-323 (lines=7) @@ | ||
| 314 | foreach ($this->_columns as $column) { |
|
| 315 | $aColumn = []; |
|
| 316 | ||
| 317 | if (0 == $i) { |
|
| 318 | $class = 'head'; |
|
| 319 | } elseif (0 == $i % 2) { |
|
| 320 | $class = 'even'; |
|
| 321 | } else { |
|
| 322 | $class = 'odd'; |
|
| 323 | } |
|
| 324 | if (method_exists($object, 'initiateCustomFields')) { |
|
| 325 | //$object->initiateCustomFields(); |
|
| 326 | } |
|
| @@ 72-78 (lines=7) @@ | ||
| 69 | foreach ($this->_columns as $column) { |
|
| 70 | $aColumn = []; |
|
| 71 | ||
| 72 | if (0 == $i) { |
|
| 73 | $class = 'head'; |
|
| 74 | } elseif (0 == $i % 2) { |
|
| 75 | $class = 'even'; |
|
| 76 | } else { |
|
| 77 | $class = 'odd'; |
|
| 78 | } |
|
| 79 | ||
| 80 | if ($column->_customMethodForValue && method_exists($object, $column->_customMethodForValue)) { |
|
| 81 | $method = $column->_customMethodForValue; |
|