first commit
This commit is contained in:
21
app/Providers/ShortcodeProcessor.php
Normal file
21
app/Providers/ShortcodeProcessor.php
Normal file
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
namespace App\Providers;
|
||||
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
class ShortcodeProcessor
|
||||
{
|
||||
public function process($content)
|
||||
{
|
||||
return preg_replace_callback('/\[([\w_]+)([^\]]*)\]/', function ($matches) {
|
||||
$shortcodeName = $matches[1];
|
||||
$shortcodeAttributes = Str::of($matches[2])->trim()->replace("'", "\"")->__toString();
|
||||
return "@shortcode('$shortcodeName', $shortcodeAttributes)";
|
||||
}, $content);
|
||||
}
|
||||
|
||||
public function processShortcodes($content)
|
||||
{
|
||||
return $this->process($content);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user