PHP code example of leaseweb / remote-template-bundle
1. Go to this page and download the library: Download leaseweb/remote-template-bundle library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
leaseweb / remote-template-bundle example snippets
php
function symfony2_autoload ($pClassName)
{
$sf2Paths = sfConfig::get('app_symfony2_paths');
foreach ($sf2Paths as $path)
{
$path = sfConfig::get('sf_root_dir') . DIRECTORY_SEPARATOR . $path;
$file = $path . DIRECTORY_SEPARATOR . str_replace('\\', DIRECTORY_SEPARATOR ,$pClassName ) . ".php";
if (file_exists($file))
{
session data
$sessionData = null;
$symfony2Attribute = sfConfig::get('app_symfony2_attribute');
if (isset($_SESSION['_symfony2']['attributes'][$symfony2Attribute]))
{ $sessionData = unserialize($_SESSION['_symfony2']['attributes'][$symfony2Attribute]);
}
// get sf1 username
if (!$this->getContext()->getUser()->isAuthenticated()) $sf1UserName = false;
else $sf1UserName = $this->getContext()->getUser()->getUserName();
// get sf2 username
if (!$sessionData) $sf2UserName = false;
else $sf2UserName = $sessionData->getUser()->getUserName();
// if usernames do not match
if ($sf1UserName!=$sf2UserName)
{ if ($sf2UserName) // if symfony2 is signed in
{ // signin to symfony1
$this->getContext()->getUser()->setUserName($sf2UserName);
$this->getContext()->getUser()->setAuthenticated(true);
$this->getContext()->getUser()->clearCredentials();
}
else // if symfony2 is not signed in
{ // signout from symfony1
$this->getContext()->getUser()->setUserName(false);
$this->getContext()->getUser()->setAuthenticated(false);
$this->getContext()->getUser()->clearCredentials();
// redirect to current page
$path = $this->getContext()->getRequest()->getPathInfo();
$this->getContext()->getController()->redirect($path);
}
}
// and execute next filter
$filterChain->execute();
}
}