项目作者: uzwebline

项目描述 :
Wordpress like shortcodes for Laravel 5.x
高级语言: PHP
项目地址: git://github.com/uzwebline/laravel_shortcodes.git
创建时间: 2018-06-28T16:10:45Z
项目社区:https://github.com/uzwebline/laravel_shortcodes

开源协议:MIT License

下载


Laravel-Shortcodes

Latest Version on Packagist
Software License
Build Status
Coverage Status
Quality Score
Total Downloads
StyleCI

WordPress like shortcodes for Laravel 5.x based on webwizo/laravel-shortcodes see:https://github.com/webwizo/laravel-shortcodes

  1. [b class="bold"]Bold text.[/b]
  2. [tabs]
  3. [tab]Tab 1[/tab]
  4. [tab]Tab 2[/tab]
  5. [/tabs]
  6. [user id="1" display="name"]

Install

Via Composer

  1. $ composer require "uzwebline/laravel_shortcodes:1.0.*"

After updating composer, add the ServiceProvider to the providers array in config/app.php

Usage

  1. Uzwebline\Shortcodes\ShortcodesServiceProvider::class,

You can use the facade for shorter code. Add this to your aliases:

  1. 'Shortcode' => Uzwebline\Shortcodes\Facades\Shortcode::class,

The class is bound to the ioC as shortcode

  1. $shortcode = app('shortcode');

Usage

withShortcodes()

To enable the view compiling features:

  1. return view('view')->withShortcodes();

This will enable shortcode rendering for that view only.

Enable through class

  1. Shortcode::enable();

Disable through class

  1. Shortcode::disable();

Disabling some views from shortcode compiling

With the config set to true, you can disable the compiling per view.

  1. return view('view')->withoutShortcodes();

Default compiling

To use default compiling:

  1. Shortcode::compile($contents);

Strip shortcodes from rendered view.

  1. return view('view')->withStripShortcodes();

Strip shortcode through class

  1. Shortcode::strip($contents);

Registering new shortcodes

Create a new ServiceProvider where you can register all the shortcodes.

  1. php artisan make:provider ShortcodesServiceProvider

After defining shortcodes, add the ServiceProvider to the providers array in config/app.php

Usage

  1. App\Providers\ShortcodesServiceProvider::class,

Callback

Shortcodes can be registered within ShortcodesServiceProvider with a callback:

  1. php artisan make:provider ShortcodesServiceProvider

ShortcodesServiceProvider.php Class File

  1. <?php namespace App\Providers;
  2. use App\Shortcodes\BoldShortcode;
  3. use Illuminate\Support\ServiceProvider;
  4. use Shortcode;
  5. class ShortcodesServiceProvider extends ServiceProvider
  6. {
  7. /**
  8. * Bootstrap the application services.
  9. *
  10. * @return void
  11. */
  12. public function boot()
  13. {
  14. //
  15. }
  16. /**
  17. * Register the application services.
  18. *
  19. * @return void
  20. */
  21. public function register()
  22. {
  23. Shortcode::register('b', BoldShortcode::class);
  24. Shortcode::register('i', 'App\Shortcodes\ItalicShortcode@custom');
  25. }
  26. }

Default class for BoldShortcode

You can store each shortcode within their class app/Shortcodes/BoldShortcode.php

  1. namespace App\Shortcodes;
  2. class BoldShortcode {
  3. public function register($shortcode, $content, $compiler, $name, $viewData)
  4. {
  5. return sprintf('<strong class="%s">%s</strong>', $shortcode->class, $content);
  6. }
  7. }

Class with custom method

You can store each shortcode within their class app/Shortcodes/ItalicShortcode.php

  1. namespace App\Shortcodes;
  2. class ItalicShortcode {
  3. public function custom($shortcode, $content, $compiler, $name, $viewData)
  4. {
  5. return sprintf('<i class="%s">%s</i>', $shortcode->class, $content);
  6. }
  7. }

Register helpers

If you only want to show the html attribute when the attribute is provided in the shortcode, you can use $shortcode->get($attributeKey, $fallbackValue = null)

  1. class BoldShortcode {
  2. public function register($shortcode, $content, $compiler, $name, $viewData)
  3. {
  4. return '<strong '. $shortcode->get('class', 'default') .'>' . $content . '</strong>';
  5. }
  6. }

Change log

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Security

If you discover any security related issues, please email umidjonsmail@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.