从页面获取缩略图? (具体5.7.4.2)

Get thumbnail from page? (Concrete 5.7.4.2)

如此处发布 https://www.concrete5.org/index.php?cID=751287 我想使用 'old' 方式从页面获取缩略图。

在我可以使用下面包含图像助手的代码之前。

<div class="image-link">
    <a <?php if ($target != '') { ?> target="<?php echo $target ?>" <?php } ?> href="<?php echo $url ?>">
        <?php
        $ts = $page->getBlocks('Thumbnail Image');
        if (is_object($ts[0])) {
            $tsb = $ts[0]->getInstance();
            $thumb = $tsb->getFileObject();
            if ($thumb) {
                $ih->outputThumbnail($thumb, 170, 80, $title);
            }
        }
        ?>
    </a>
</div>

来自子页面的这一部分:

<div id="thumbnail">
    <?php
    if ($c->isEditMode()) {
        print '<br><br>';
        $a = new Area('Thumbnail Image');
        $a->display($c);
    }
    ?>
</div>

然而现在这一切都改变了,新系统使用页面属性作为缩略图。由于网站已经设置了 'old' 方式,我希望能够再次以相同方式检索缩略图。

如有任何帮助,我们将不胜感激。

我通过 composer 设置了 "thumbnail" 页面属性,这就是我在页面模板中检索它的方式:

 <?php
     $thumbnail = $c->getAttribute('thumbnail');
     if($thumbnail) {
         $img = Core::make('html/image', array($thumbnail));
         $tag = $img->getTag();
         print $tag;
     }
 ?>

我把我的实验帽拿出来修好了。

<div class="image-link">
                <a <?php if ($target != '') { ?> target="<?php echo $target ?>" <?php } ?> href="<?php echo $url ?>">
                    <?php
                    foreach ($blocks as $block) {
                        if ($block->getBlockTypeHandle() == "image" && $block->getAreaHandle() == "Thumbnail Image") {
                            if (is_object($block)) {
                                $tsb = $block->getInstance();
                                $thumb = $tsb->getFileObject();
                                if ($thumb) {
                                    $ih->outputThumbnail($thumb, 170, 80);
                                }
                            }
                        }
                    }
                    ?>
                </a>
            </div>