webfox/silverstripe-testimonials

此包已被弃用且不再维护。未建议替代包。

一个silverstripe客户评价模块

安装: 256

依赖: 0

建议者: 0

安全: 0

星星: 0

观察者: 3

分支: 3

开放问题: 0

类型:silverstripe模块

v0.2.2 2017-01-15 20:22 UTC

This package is auto-updated.

Last update: 2022-10-14 02:50:39 UTC


README

这是一个为silverstripe实现的FAQ模块,通过扩展在任何页面类型上实现后端,但不指定前端!

如何使用

此模块仅支持通过composer安装

composer require webfox/silverstripe-testimonials

应用在任何你希望出现“评价”标签的页面类型上

(可应用于多种页面类型)

Page:
  extensions:
    - TestimonialsExtension

在前端使用

<% if $Testimonials %>
    <% loop $Testimonials %>
        <h2>Author: {$Title}</h2>
        <p>Company: {$Company}</p>
        <p>Date: {$Date}</p>
        <img src="{$Image.URL}" />
        <p>Testimonial:</p>
        {$Testimonial}
    <% end_loop %>
<% end_if %>