leowebguy / lorem-ipsum
Lorem Ipsum Generator for Craft
Installs: 795
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 1
Type:craft-plugin
Requires
- php: ^8.2
- craftcms/cms: ^5.0
- joshtronic/php-loremipsum: ^2.1.0
Requires (Dev)
- craftcms/ecs: dev-main
- craftcms/phpstan: dev-main
- craftcms/rector: dev-main
- laravel/pint: ^1.14.0
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>