Your IP : 216.73.216.189


Current Path : /home/eolienneia/www/templates/yootheme/vendor/yootheme/view/src/View/
Upload File :
Current File : /home/eolienneia/www/templates/yootheme/vendor/yootheme/view/src/View/StrHelper.php

<?php

namespace YOOtheme\View;

use YOOtheme\Str;
use YOOtheme\View;

class StrHelper extends Str
{
    /**
     * Constructor.
     *
     * @param View $view
     */
    public function __construct(View $view)
    {
        $functions = [
            // native
            'trim' => 'trim',
            'json' => 'json_encode',
            'nl2br' => 'nl2br',
            'striptags' => 'strip_tags',

            // date
            'date' => [$this, 'date'],

            // string util
            'limit' => [$this, 'limit'],
            'words' => [$this, 'words'],
            'upper' => [$this, 'upper'],
            'lower' => [$this, 'lower'],
            'title' => [$this, 'titleCase'],
        ];

        foreach ($functions as $name => $function) {
            $view->addFunction($name, $function);
        }
    }

    /**
     * Formats a date.
     *
     * @param mixed  $date
     * @param string $format
     *
     * @return string
     */
    public function date($date, $format = 'F j, Y H:i')
    {
        if (is_string($date)) {
            $date = strtotime($date);
        } elseif ($date instanceof \DateTime) {
            $date = $date->getTimestamp();
        }

        return date($format, $date);
    }
}