Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
v3.cesa.co.za /
src /
CoreBundle /
Form /
Type /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
ImageSelectType.php
1.12
KB
-rwxrwxr-x
2026-04-02 12:06
php_errors.log
319
B
-rwxrwxr-x
2026-04-02 12:06
Save
Rename
<?php namespace App\CoreBundle\Form\Type; use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; use Symfony\Component\Form\FormInterface; use Symfony\Component\Form\FormView; /** * Image selector form field type * * @author Otto Saayman <otto@igotafrica.com> * @package CoreBundle * @subpackage Form * @version 0.0.1 */ class ImageSelectType extends AbstractType { private $serviceContainer = null; public function __construct(ContainerInterface $serviceContainer) { $this->serviceContainer = $serviceContainer; } public function buildView(FormView $view, FormInterface $form, array $options) { parent::buildView($view, $form, $options); $userLanguage = $this->serviceContainer->get('languages.manager')->getUserLanguage(); $view->vars = array_merge($view->vars, array( 'userLanguage' => $userLanguage, )); } public function getParent() { return TextType::class; } public function getName() { return 'image_select'; } }