waltersilvacruz/laravel-shortcodes
Composer 安装命令:
composer require waltersilvacruz/laravel-shortcodes
包简介
Wordpress like shortcodes for Laravel 5, 6, 7, 8, 9, 10 and 11 (fork of webwizo/laravel-shortcodes)
README 文档
README
WordPress like shortcodes for Laravel 5.x
[b class="bold"]Bold text[/b] [tabs] [tab]Tab 1[/tab] [tab]Tab 2[/tab] [/tabs] [user id="1" display="name"]
If you are looking for Laravel 4.2, see: https://github.com/patrickbrouwers/Laravel-Shortcodes
Install
Via Composer
$ composer require "webwizo/laravel-shortcodes:1.0.*"
After updating composer, add the ServiceProvider to the providers array in config/app.php
Usage
Webwizo\Shortcodes\ShortcodesServiceProvider::class,
You can use the facade for shorter code. Add this to your aliases:
'Shortcode' => Webwizo\Shortcodes\Facades\Shortcode::class,
The class is bound to the ioC as shortcode
$shortcode = app('shortcode');
Usage
withShortcodes()
To enable the view compiling features:
return view('view')->withShortcodes();
This will enable shortcode rendering for that view only.
Enable through class
Shortcode::enable();
Disable through class
Shortcode::disable();
Disabling some views from shortcode compiling
With the config set to true, you can disable the compiling per view.
return view('view')->withoutShortcodes();
Default compiling
To use default compiling:
Shortcode::compile($contents);
Strip shortcodes from rendered view.
return view('view')->withStripShortcodes();
Strip shortcode through class
Shortcode::strip($contents);
Registering new shortcodes
Create a new ServiceProvider where you can register all the shortcodes.
php artisan make:provider ShortcodesServiceProvider
After defining shortcodes, add the ServiceProvider to the providers array in config/app.php
Usage
App\Providers\ShortcodesServiceProvider::class,
Callback
Shortcodes can be registered within ShortcodesServiceProvider with a callback:
php artisan make:provider ShortcodesServiceProvider
ShortcodesServiceProvider.php Class File
<?php namespace App\Providers; use App\Shortcodes\BoldShortcode; use Illuminate\Support\ServiceProvider; use Shortcode; class ShortcodesServiceProvider extends ServiceProvider { /** * Bootstrap the application services. * * @return void */ public function boot() { // } /** * Register the application services. * * @return void */ public function register() { Shortcode::register('b', BoldShortcode::class); Shortcode::register('i', 'App\Shortcodes\ItalicShortcode@custom'); } }
Default class for BoldShortcode
You can store each shortcode within their class app/Shortcodes/BoldShortcode.php
namespace App\Shortcodes; class BoldShortcode { public function register($shortcode, $content, $compiler, $name, $viewData) { return sprintf('<strong class="%s">%s</strong>', $shortcode->class, $content); } }
Class with custom method
You can store each shortcode within their class app/Shortcodes/ItalicShortcode.php
namespace App\Shortcodes; class ItalicShortcode { public function custom($shortcode, $content, $compiler, $name, $viewData) { return sprintf('<i class="%s">%s</i>', $shortcode->class, $content); } }
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)
class BoldShortcode { public function register($shortcode, $content, $compiler, $name, $viewData) { return '<strong '. $shortcode->get('class', 'default') .'>' . $content . '</strong>'; } }
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 webwizo@gmail.com instead of using the issue tracker.
Credits
Support me
License
The MIT License (MIT). Please see License File for more information.
waltersilvacruz/laravel-shortcodes 适用场景与选型建议
waltersilvacruz/laravel-shortcodes 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 56 次下载、GitHub Stars 达 1, 最近一次更新时间为 2021 年 01 月 22 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「wordpress」 「laravel」 「shortcodes」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 waltersilvacruz/laravel-shortcodes 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 waltersilvacruz/laravel-shortcodes 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 waltersilvacruz/laravel-shortcodes 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Anax TextFilter module, frontmatter, shortcodes, markdown.
Use Wordpress-style shortcodes in your Twig templates.
Use Wordpress-style shortcodes in your Twig templates.
A package to manage and generate string with tokens/shortcodes for Eloquent Models
Tinymce and Quicktag buttons (and modals) for outputting shortcodes. Built to work with CMB2.
Alfabank REST API integration
统计信息
- 总下载量: 56
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 4
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-01-22