%PDF- %PDF-
| Direktori : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/components/export/ |
| Current File : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/components/export/ArrayColumn.php |
<?php
/**
* @link https://www.humhub.org/
* @copyright Copyright (c) 2021 HumHub GmbH & Co. KG
* @license https://www.humhub.com/licences
*/
namespace humhub\components\export;
/**
* ArrayColumn exports array values to [[SpreadsheetExport]] widget.
*/
class ArrayColumn extends DataColumn
{
/**
* @inheritdoc
*/
public function renderDataCellContent($model, $key, $index)
{
if ($this->content === null) {
$value = $this->getDataCellValue($model, $key, $index);
if (is_array($value)) {
return $this->grid->formatter->format(implode(', ', $value), $this->format);
}
}
return parent::renderDataCellContent($model, $key, $index);
}
}