vedmant / laravel-shortcodes
Wordress like shortcodes for Laravel
Installs: 5 361
Dependents: 1
Suggesters: 0
Security: 0
Stars: 23
Watchers: 2
Forks: 5
Open Issues: 0
Requires
- php: >=7.0.0
- illuminate/contracts: >=5.5.0
- illuminate/support: >=5.5.0
- illuminate/view: >=5.5.0
Requires (Dev)
- mockery/mockery: ^1.2
- orchestra/testbench: ^4
- phpunit/phpunit: 9.*
- sempro/phpunit-pretty-print: ^1.0
- dev-master
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.10
- 1.0.9
- 1.0.8
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0
- dev-analysis-O3AKO0
- dev-develop
- dev-analysis-lKrK4J
- dev-analysis-qBOPZr
- dev-analysis-qMvvv2
- dev-analysis-q5JOWB
- dev-analysis-qo360K
- dev-analysis-qMZJgL
- dev-analysis-XkdbE9
- dev-analysis-zR3K3p
- dev-analysis-qoZkZK
- dev-analysis-zD9e6k
This package is auto-updated.
Last update: 2024-11-15 03:37:26 UTC
README
Wordpress based Shortcodes for Laravel Framework with shared variables, debugbar integration, flexible configurations and other useful features.
Build powerful and simple layouts using shortcodes in the content or views like this:
[b]Bold text[/b] [row] [col md=8] [posts_list types="post,gallery" show_tags="yes"] [/col] [col md=4] [poll id="1"] [user_info username="test_user" website="mywebsite.com" active="yes"] [last_free_post title="Free Posts"] [/col] [/row]
Installation
Via Composer
$ composer require vedmant/laravel-shortcodes
Configuraton
Publish configuration.
php artisan vendor:publish --tag=shortcodes
It will publish configuration file shortcodes.php
, edit it as needed.
Usage
Shortcode class
Shortcode class should extend abstract \Vedmant\LaravelShortcodes\Shortcode class.
This packages adds the make:shortcode
artisan command:
php artisan make:shortcode PostsListShortcode
Which generates a shortcode class in the app/Shortcodes
folder by default.
Register shortcodes
You can use AppServiceProvider::boot
method to register all needed shortcodes.
Using shortcode class:
Shortcodes::add('b', BShortcode::class);
Using shortcode classes in array, preferable for lots of shortcodes:
Shortcodes::add([ 'a' => AShortcode::class, 'b' => BShortcode::class, ]);
Using closure:
Shortcodes::add('test', function ($atts, $content, $tag, $manager) { return new HtmlString('<strong>some test shortcode</strong>'); });
Render shortcodes
Views auto-render
By default this package extends the View
class to parse all shortcodes during views rendering.
This feature can be disabled in the config file: 'render_views' => false
.
For better performance with lots of views it's advised to disable views auto-render.
Enable / disable rendering per view
Also to enable / disable rendering shortcodes for a specific view you can use:
view('some-view')->withShortcodes(); // Or view('some-view')->withoutShortcodes();
Render shortcodes with the facade
{{ Shortcodes::render('[b]bold[/b]') }}
Render shortcodes with blade directive
@shortcodes [b class="block"]Content[/b] @endshortcodes Or @shortcodes('[b]bold[/b]')
Render shortcodes with shortcodes()
helper
<div class="some-block"> {{ shortcodes('[b]bold[/b]') }} </div>
Shared attributes
Occasionally, you may need to share a piece of data with all shortcodes that are rendered by your application.
You may do so using the shortode facade's share
method.
Typically, you should place calls to share in the controller, or within a service provider's boot method.
Shortcodes::share('post', $post);
Then you can get shared attributes in the shortcode class:
$post = $this->shared('post'); $allShared = $this->shared();
Attribute casting
The $casts property on your shortcode class provides a convenient method of converting attributes to
common data types. The $casts property should be an array where the key is the name of the attribute
being cast and the value is the type you wish to cast the column to. The supported cast types are:
int
, integer
, real
, float
, double
, boolean
, array
(comma separated values) and date
.
class YourShortcode extends Shortcode { /** * The attributes that should be cast to native types. * * @var array */ protected $casts = [ 'show_ids' => 'array', ]; }
Now the show_ids
attribute will always be cast to an array when you access it.
(array attributes are casted from comma separated string, eg. "1,2,3").
Attribute validation
There is a simple way to validate attributes. Error messages will be rendered on the shortcode place. For convenients it will return attributes.
class YourShortcode extends Shortcode { /** * Render shortcode * * @param string $content * @return string */ public function render($content) { $atts = $this->validate([ 'post_id' => 'required|numeric|exists:posts,id', ]); // } }
Option to not throw exceptions from shortcodes
There is a useful option to aviod server (500) error for whole page when one of shortocode has thrown an exception.
To enable it set 'throw_exceptions' => false,
in the shortcodes.php
config file.
This will render exception details in the place of a shortcode and will not crash whole page request with 500 error. It will still log exception to a log file and report to Sentry if it's integrated.
Generate data for documentation
There can be hundreds of registered shortcodes and having a way to show documentation for all shortcodes is quite a good feature. There is simple method that will collect descriptions and attributes data from all registered shortcodes:
$data = Shortcodes::registeredData();
It returns Collection object with generated data that can be used to generate any help information.
Integration with Laravel Debugbar
This packages supports Laravel Debugbar
and adds a tab with detailed info about rendered shortcodes.
Integration can be disabled in the config file with option: 'debugbar' => false,
.
Testing
$ vendor/bin/phpunit
TODO
- Add custom widget for debugbar integration
- Create performance profile tests, optimize performance
Contributing
Please see contributing.md for details and a todolist.
Security
If you discover any security related issues, please email vedmant@gmail.com instead of using the issue tracker.
Credits
License
MIT. Please see the license file for more information.