Files
kupshop/bundles/KupShop/AdminBundle/Controller/CKFinderController.php
2025-08-02 16:30:27 +02:00

22 lines
491 B
PHP

<?php
namespace KupShop\AdminBundle\Controller;
use KupShop\KupShopBundle\Views\View;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Routing\Annotation\Route;
class CKFinderController extends AbstractController
{
/**
* @Route("/_ckfinder/browse/")
*/
public function browseAction(View $view)
{
$view->setTemplate('ckfinder.tpl')
->setSmartyFallback('blank');
return $view->getResponse();
}
}