22 lines
491 B
PHP
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();
|
|
}
|
|
}
|