Changed old code to benefit from old framework
Signed-off-by: Gergely POLONKAI (W00d5t0ck) <polesz@w00d5t0ck.info>
This commit is contained in:
@@ -3,33 +3,55 @@
|
||||
namespace GergelyPolonkai\FrontBundle\Controller;
|
||||
|
||||
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
||||
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
|
||||
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
|
||||
|
||||
|
||||
/**
|
||||
* @Route("/")
|
||||
*/
|
||||
class DefaultController extends Controller
|
||||
{
|
||||
public function homepageAction()
|
||||
{
|
||||
return $this->render('GergelyPolonkaiFrontBundle:Default:index.html.twig', array());
|
||||
}
|
||||
/**
|
||||
* @Route("/", name="GergelyPolonkaiFrontBundle_homepage")
|
||||
* @Template
|
||||
*/
|
||||
public function indexAction()
|
||||
{
|
||||
return array();
|
||||
}
|
||||
|
||||
public function disclaimerAction()
|
||||
{
|
||||
return $this->render('GergelyPolonkaiFrontBundle:Default:disclaimer.html.twig', array());
|
||||
}
|
||||
/**
|
||||
* @Route("/disclaimer.html", name="GergelyPolonkaiFrontBundle_disclaimer")
|
||||
* @Template
|
||||
*/
|
||||
public function disclaimerAction()
|
||||
{
|
||||
return array();
|
||||
}
|
||||
|
||||
public function resumeAction($_format)
|
||||
{
|
||||
if ($_format == 'pdf')
|
||||
{
|
||||
return $this->get('io_tcpdf')->quick_pdf($this->renderView('GergelyPolonkaiFrontBundle:Default:resume.html.twig', array(
|
||||
'format' => $_format,
|
||||
)));
|
||||
}
|
||||
else
|
||||
{
|
||||
return $this->render('GergelyPolonkaiFrontBundle:Default:resume.html.twig', array(
|
||||
'format' => $_format,
|
||||
));
|
||||
}
|
||||
}
|
||||
/**
|
||||
* @param string $_format
|
||||
*
|
||||
* @Route("/resume.{_format}", name="GergelyPolonkaiFrontBundle_resume")
|
||||
* @Template
|
||||
*/
|
||||
public function resumeAction($_format)
|
||||
{
|
||||
if ($_format === 'pdf') {
|
||||
return $this
|
||||
->get('io_tcpdf')
|
||||
->quick_pdf(
|
||||
$this->renderView(
|
||||
'GergelyPolonkaiFrontBundle:Default:resume.html.twig',
|
||||
array(
|
||||
'format' => $_format
|
||||
)
|
||||
)
|
||||
);
|
||||
} else {
|
||||
return array(
|
||||
'format' => $_format,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -22,7 +22,7 @@ class GergelyPolonkaiFrontExtension extends Extension
|
||||
$configuration = new Configuration();
|
||||
$config = $this->processConfiguration($configuration, $configs);
|
||||
|
||||
$loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
|
||||
$loader->load('services.yml');
|
||||
$loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
|
||||
$loader->load('services.xml');
|
||||
}
|
||||
}
|
||||
|
@@ -1,13 +0,0 @@
|
||||
GergelyPolonkaiFrontBundle_homepage:
|
||||
pattern: /
|
||||
defaults: { _controller: GergelyPolonkaiFrontBundle:Default:homepage }
|
||||
|
||||
GergelyPolonkaiFrontBundle_disclaimer:
|
||||
pattern: /disclaimer.html
|
||||
defaults: { _controller: GergelyPolonkaiFrontBundle:Default:disclaimer }
|
||||
|
||||
GergelyPolonkaiFrontBundle_resume:
|
||||
pattern: /resume.{_format}
|
||||
defaults: { _controller: GergelyPolonkaiFrontBundle:Default:resume }
|
||||
requirements:
|
||||
_format: html|pdf
|
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" ?>
|
||||
|
||||
<container xmlns="http://symfony.com/schema/dic/services"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
|
||||
|
||||
<!--
|
||||
<parameters>
|
||||
<parameter key="gergely_polonkai_front.example.class">GergelyPolonkai\FrontBundle\Example</parameter>
|
||||
</parameters>
|
||||
|
||||
<services>
|
||||
<service id="gergely_polonkai_front.example" class="%gergely_polonkai_front.example.class%">
|
||||
<argument type="service" id="service_id" />
|
||||
<argument>plain_value</argument>
|
||||
<argument>%parameter_name%</argument>
|
||||
</service>
|
||||
</services>
|
||||
-->
|
||||
</container>
|
@@ -1,7 +0,0 @@
|
||||
parameters:
|
||||
# gergely_polonkai_front.example.class: GergelyPolonkai\FrontBundle\Example
|
||||
|
||||
services:
|
||||
# gergely_polonkai_front.example:
|
||||
# class: %gergely_polonkai_front.example.class%
|
||||
# arguments: [@service_id, "plain_value", %parameter%]
|
Reference in New Issue
Block a user