thunderer/Shortcode

View on GitHub
src/Handler/PlaceholderHandler.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace Thunder\Shortcode\Handler;

use Thunder\Shortcode\Shortcode\ShortcodeInterface;

/**
 * @author Tomasz Kowalczyk <tomasz@kowalczyk.cc>
 */
final class PlaceholderHandler
{
    /** @var string */
    private $delimiter;

    /** @param string $delimiter */
    public function __construct($delimiter = '%')
    {
        $this->delimiter = $delimiter;
    }

    /**
     * [placeholder value=18]You age is %value%[/placeholder]
     *
     * @param ShortcodeInterface $shortcode
     *
     * @return mixed
     */
    public function __invoke(ShortcodeInterface $shortcode)
    {
        $args = $shortcode->getParameters();
        $delimiter = $this->delimiter;
        $keys = array_map(function($key) use($delimiter) { return $delimiter.$key.$delimiter; }, array_keys($args));
        /** @var string[] $values */
        $values = array_values($args);

        return str_replace($keys, $values, (string)$shortcode->getContent());
    }
}