Changed old code to benefit from old framework
Signed-off-by: Gergely POLONKAI (W00d5t0ck) <polesz@w00d5t0ck.info>
This commit is contained in:
parent
5a51a05629
commit
24536b07df
@ -1,5 +1,6 @@
|
||||
GergelyPolonkaiFrontBundle:
|
||||
resource: "@GergelyPolonkaiFrontBundle/Resources/config/routing.yml"
|
||||
gergely_polonkai_front:
|
||||
resource: "@GergelyPolonkaiFrontBundle/Controller/"
|
||||
type: annotation
|
||||
prefix: /
|
||||
|
||||
# Internal routing configuration to handle ESI
|
||||
|
@ -4,6 +4,12 @@
|
||||
"autoload": {
|
||||
"psr-0": { "": "src/" }
|
||||
},
|
||||
"repositories": [
|
||||
{
|
||||
"type": "vcs",
|
||||
"url": "http://github.com/w00d5t0ck/IoTcpdfBundle"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": ">=5.3.3",
|
||||
"symfony/symfony": "2.1.*",
|
||||
@ -17,7 +23,8 @@
|
||||
"sensio/framework-extra-bundle": "2.1.*",
|
||||
"sensio/generator-bundle": "2.1.*",
|
||||
"jms/security-extra-bundle": "1.2.*",
|
||||
"jms/di-extra-bundle": "1.1.*"
|
||||
"jms/di-extra-bundle": "1.1.*",
|
||||
"gergelypolonkai/tcpdfbundle": "dev-master"
|
||||
},
|
||||
"scripts": {
|
||||
"post-install-cmd": [
|
||||
|
@ -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%]
|
1
vendor/doctrine
vendored
1
vendor/doctrine
vendored
@ -1 +0,0 @@
|
||||
Subproject commit 03d2b0f30c35d313339478d24337dd1a28a2f2f2
|
1
vendor/monolog
vendored
1
vendor/monolog
vendored
@ -1 +0,0 @@
|
||||
Subproject commit b704c49a3051536f67f2d39f13568f74615b9922
|
1
vendor/swiftmailer
vendored
1
vendor/swiftmailer
vendored
@ -1 +0,0 @@
|
||||
Subproject commit d02e07b2cc4e35234119033c6d0cc8805a893b11
|
1
vendor/symfony
vendored
1
vendor/symfony
vendored
@ -1 +0,0 @@
|
||||
Subproject commit c2480c1e73879593ef6b88571fc733ada5a26bba
|
1
vendor/twig
vendored
1
vendor/twig
vendored
@ -1 +0,0 @@
|
||||
Subproject commit 2afc513620e7f8dadda92a0f4ed04cb157e048df
|
Loading…
Reference in New Issue
Block a user