1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?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\Bundle\FrameworkBundle\Templating\Helper;
- use Symfony\Component\Templating\Helper\Helper;
- use Symfony\Component\HttpFoundation\Request;
- /**
- * SessionHelper provides read-only access to the session attributes.
- *
- * @author Fabien Potencier <fabien@symfony.com>
- */
- class SessionHelper extends Helper
- {
- protected $session;
- /**
- * Constructor.
- *
- * @param Request $request A Request instance
- */
- public function __construct(Request $request)
- {
- $this->session = $request->getSession();
- }
- /**
- * Returns an attribute
- *
- * @param string $name The attribute name
- * @param mixed $default The default value
- *
- * @return mixed
- */
- public function get($name, $default = null)
- {
- return $this->session->get($name, $default);
- }
- /**
- * Returns the locale
- *
- * @return string
- */
- public function getLocale()
- {
- return $this->session->getLocale();
- }
- public function getFlash($name, $default = null)
- {
- return $this->session->getFlash($name, $default);
- }
- public function getFlashes()
- {
- return $this->session->getFlashes();
- }
- public function hasFlash($name)
- {
- return $this->session->hasFlash($name);
- }
- /**
- * Returns the canonical name of this helper.
- *
- * @return string The canonical name
- */
- public function getName()
- {
- return 'session';
- }
- }
|