SILENT KILLERPanel

Current Path: > > opt > cloudlinux > alt-php55 > root > usr > share > pear > Symfony > Component > Templating > Helper


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //opt/cloudlinux/alt-php55/root/usr/share/pear/Symfony/Component/Templating/Helper

NameTypeSizeLast ModifiedActions
AssetsHelper.php File 1439 bytes December 18 2019 11:24:07.
CoreAssetsHelper.php File 3341 bytes December 18 2019 11:24:07.
Helper.php File 1021 bytes December 18 2019 11:24:07.
HelperInterface.php File 927 bytes December 18 2019 11:24:07.
SlotsHelper.php File 3181 bytes December 18 2019 11:24:07.

Reading File: //opt/cloudlinux/alt-php55/root/usr/share/pear/Symfony/Component/Templating/Helper/Helper.php

<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Symfony\Component\Templating\Helper;

/**
 * Helper is the base class for all helper classes.
 *
 * Most of the time, a Helper is an adapter around an existing
 * class that exposes a read-only interface for templates.
 *
 * @author Fabien Potencier <fabien@symfony.com>
 *
 * @api
 */
abstract class Helper implements HelperInterface
{
    protected $charset = 'UTF-8';

    /**
     * Sets the default charset.
     *
     * @param string $charset The charset
     *
     * @api
     */
    public function setCharset($charset)
    {
        $this->charset = $charset;
    }

    /**
     * Gets the default charset.
     *
     * @return string The default charset
     *
     * @api
     */
    public function getCharset()
    {
        return $this->charset;
    }
}

SILENT KILLER Tool