leowebguy/lorem-ipsum
最新稳定版本:2.0.0
Composer 安装命令:
composer require leowebguy/lorem-ipsum
包简介
Lorem Ipsum Generator for Craft
README 文档
README
Extending PHP Lorem Ipsum by @joshtronic
Installation
Open your terminal and go to your Craft project:
composer require leowebguy/lorem-ipsum -w && php craft plugin/install lorem-ipsum
Usage
The plugin exposes these methods to Twig:
Words
{{ craft.lorem.w(1) }} >> 1 word
{{ craft.lorem.w(5) }} >> 5 words
Sentences
{{ craft.lorem.s(1) }} >> 1 sentence
{{ craft.lorem.s(2) }} >> 2 sentences
Paragraphs
{{ craft.lorem.p(1) }} >> 1 paragraph
{{ craft.lorem.p(2) }} >> 2 paragraphs
Need it wrapped ? Just use Twig {{ tag }}
{{ tag('p', {
text: craft.lorem.w(10),
class: 'text-center' })
}}
output >> <p class="text-center">lorem ipsum...</p>
With twig utils
craft.lorem.w(10)|title << Uppercases the first character of each word in a string. craft.lorem.w(10)|upper << Formats a string into “UPPER CASE”. craft.lorem.w(10)|ucfirst << Capitalizes the first character of a string. craft.lorem.w(10)|lower << Formats a string into “lower case”.
Great for data templating fallback!
{% set data = {
heading: entry.heading ?? craft.lorem.w(6),
copy: entry.copy ?? craft.lorem.p(1)
} %}
<div>
<h2>{{ data.heading }}</h2>
<p>{{ data.copy }}</p>
</div>
统计信息
- 总下载量: 848
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: proprietary
- 更新时间: 2023-04-09