good day! I tell you that I'm looking at a php code that I use Symfony, to which I have to change some styles. In a form you have an iframe with the following src src="/ web / index.php / form"
I have to change the style of that form but I do not know in which part of the project to look for it. Obviously there is not a folder called index.php so I calculate that it is loading something from there. I pass the code of said index.php:
<?php
require_once(dirname(__FILE__).'/../config/ProjectConfiguration.class.php');
$configuration =
ProjectConfiguration::getApplicationConfiguration('frontend', 'prod', false);
sfContext::createInstance($configuration)->dispatch();
Since a thousand thanks