Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 216.73.216.30
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
symfony /
http-kernel /
Fragment /
Delete
Unzip
Name
Size
Permission
Date
Action
AbstractSurrogateFragmentRenderer.php
3.5
KB
-rw-rw-r--
2022-07-29 12:30
EsiFragmentRenderer.php
563
B
-rw-rw-r--
2022-07-29 12:30
FragmentHandler.php
3.64
KB
-rw-rw-r--
2022-07-29 12:30
FragmentRendererInterface.php
996
B
-rw-rw-r--
2022-07-29 12:30
FragmentUriGenerator.php
3.46
KB
-rw-rw-r--
2022-07-29 12:30
FragmentUriGeneratorInterface.php
1.01
KB
-rw-rw-r--
2022-07-29 12:30
HIncludeFragmentRenderer.php
3.27
KB
-rw-rw-r--
2022-07-29 12:30
InlineFragmentRenderer.php
4.91
KB
-rw-rw-r--
2022-07-29 12:30
RoutableFragmentRenderer.php
1.47
KB
-rw-rw-r--
2022-07-29 12:30
SsiFragmentRenderer.php
563
B
-rw-rw-r--
2022-07-29 12:30
Save
Rename
<?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\HttpKernel\Fragment; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpKernel\Controller\ControllerReference; use Symfony\Component\HttpKernel\EventListener\FragmentListener; /** * Adds the possibility to generate a fragment URI for a given Controller. * * @author Fabien Potencier <fabien@symfony.com> */ abstract class RoutableFragmentRenderer implements FragmentRendererInterface { /** * @internal */ protected $fragmentPath = '/_fragment'; /** * Sets the fragment path that triggers the fragment listener. * * @see FragmentListener */ public function setFragmentPath(string $path) { $this->fragmentPath = $path; } /** * Generates a fragment URI for a given controller. * * @param bool $absolute Whether to generate an absolute URL or not * @param bool $strict Whether to allow non-scalar attributes or not * * @return string */ protected function generateFragmentUri(ControllerReference $reference, Request $request, bool $absolute = false, bool $strict = true) { return (new FragmentUriGenerator($this->fragmentPath))->generate($reference, $request, $absolute, $strict, false); } }