tiitoo / wordbundle
This is a Symfony2 Bundle helps you to read and write Word files, thanks to the PHPWord library
Installs: 59
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.6
- phpoffice/phpword: ^0.14|dev-develop
- symfony/framework-bundle: ~2.3
Requires (Dev)
- phpunit/phpunit: ~4.6
- sensio/framework-extra-bundle: ~2.3|~3.0
- symfony/browser-kit: ~2.3|~3.0
- symfony/class-loader: ~2.3|~3.0
- symfony/finder: ~2.3|~3.0
- symfony/form: ~2.3|~3.0
- symfony/validator: ~2.3|~3.0
This package is auto-updated.
Last update: 2024-11-05 22:41:21 UTC
README
This bundle permits you to create, modify and read word objects.
License
Installation
1 Add this to your composer.json
"minimum-stability": "dev", "prefer-stable": true,
2 Add to composer.json to the require
key
$composer require ggggino/wordbundle
3 Register the bundle in app/AppKernel.php
$bundles = array( // ... new GGGGino\WordBundle\GGGGinoWordBundle(), );
Get started
- Create an empty object:
$phpWordObject = $this->get('phpword')->createPHPWordObject();
- Create an object from a file:
$phpWordObject = $this->get('phpword')->createPHPWordObject('file.docx');
- Create a Word and write to a file given the object:
$writer = $this->get('phpword')->createWriter($phpWordObject, 'Word2007'); $writer->save('file.xls');
- Create a Word and create a StreamedResponse:
$writer = $this->get('phpword')->createWriter($phpWordObject, 'Word2007'); $response = $this->get('phpword')->createStreamedResponse($writer);
Not Only 'Word2007'
The list of the types are:
- 'Word2007'
- 'ODText'
- 'HTML'
- 'PDF'
- 'RTF'
Example
Fake Controller
The best place to start is the fake Controller at Tests/app/Controller/FakeController.php
, that is a working example.
More example
You could find a lot of examples in the official PHPWord repository https://github.com/PHPOffice/PHPWord/tree/develop/samples
Create a new doc
namespace YOURNAME\YOURBUNDLE\Controller; use Symfony\Bundle\FrameworkBundle\Controller\Controller; use Symfony\Component\HttpFoundation\ResponseHeaderBag; class DefaultController extends Controller { public function indexAction($name) { // ask the service for a Word2007 $phpWordObject = $this->get('phpword')->createPHPWordObject(); // Create a new Page $section = $phpWordObject->addSection(); // Adding Text element to the Section having font styled by default... $section->addText( '"Learn from yesterday, live for today, hope for tomorrow. ' . 'The important thing is not to stop questioning." ' . '(Albert Einstein)' ); // create the writer $writer = $this->get('phpword')->createWriter($phpWordObject, 'Word2007'); // create the response $response = $this->get('phpword')->createStreamedResponse($writer); // adding headers $dispositionHeader = $response->headers->makeDisposition( ResponseHeaderBag::DISPOSITION_ATTACHMENT, 'stream-file.doc' ); $response->headers->set('Content-Type', 'application/msword'); $response->headers->set('Pragma', 'public'); $response->headers->set('Cache-Control', 'maxage=1'); $response->headers->set('Content-Disposition', $dispositionHeader); return $response; } }
Edit a doc
In the template file(docx) variable should be declared as ${var1}, so in the template you can change "var1" value in this way:
$phpTemplateObject->setValue('var1', 'testValue');
Complete example
namespace YOURNAME\YOURBUNDLE\Controller; use Symfony\Bundle\FrameworkBundle\Controller\Controller; use Symfony\Component\HttpFoundation\ResponseHeaderBag; class DefaultController extends Controller { public function indexAction($name) { $fileName = ".../../test.docx"; // ask the service for a Word2007 $phpTemplateObject = $this->get('phpword')->createTemplateObject($fileName); $phpTemplateObject->setValue('test', 'testValue'); $phpWordObject = $this->get('phpword')->getPhpWordObjFromTemplate($phpTemplateObject); // create the writer $writer = $this->get('phpword')->createWriter($phpWordObject, 'Word2007'); // create the response $response = $this->get('phpword')->createStreamedResponse($writer); // adding headers $dispositionHeader = $response->headers->makeDisposition( ResponseHeaderBag::DISPOSITION_ATTACHMENT, 'stream-file.docx' ); $response->headers->set('Content-Type', 'application/msword'); $response->headers->set('Pragma', 'public'); $response->headers->set('Cache-Control', 'maxage=1'); $response->headers->set('Content-Disposition', $dispositionHeader); return $response; } }
Contribute
- fork the project
- clone the repo
- submit a PullRequest