%PDF- %PDF-
| Direktori : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/modules/user/grid/ |
| Current File : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/modules/user/grid/ImageColumn.php |
<?php
/**
* @link https://www.humhub.org/
* @copyright Copyright (c) 2017 HumHub GmbH & Co. KG
* @license https://www.humhub.com/licences
*/
namespace humhub\modules\user\grid;
use humhub\modules\user\widgets\Image as UserImage;
/**
* ImageColumn
*
* @since 1.3
* @author Luke
*/
class ImageColumn extends BaseColumn
{
/**
* @inheritdoc
*/
public function init()
{
parent::init();
$this->options['style'] = 'width:38px';
}
/**
* @inheritdoc
*/
protected function renderDataCellContent($model, $key, $index)
{
return UserImage::widget(['user' => $this->getUser($model), 'width' => 34]);
}
}