Differences

This shows you the differences between two versions of the page.

frameworks_2527_2522 [2024/09/05 00:13] (current)
2605:7980:0:208d::1 old revision restored
Line 1: Line 1:
 +317
 +
 +
 +How to get PHPTAL working with popular frameworks. Please add  instructions or link to "glue" code, not just the frameworks themselves.
 +
 +
 +
 +=====Zend Framework=====
 +
 +  * [[http://opensource.names.co.uk/ztal/|ZTal]] — deep integration of views, forms, translation, cache and other parts of Zend and PHPTAL.
 +  * [[http://taat.pl/article/zend_framework_tutorial/|Zend Framework + PHPTAL tutorial]] with ready to use "glue" code.
 +  * [[http://gmalkas.org/blog/index.php?tag/PHPTAL|Short tutorial with Zend View example]].
 +  * [[https://github.com/xorock/zend-expressive-phptalrenderer|Zend Expressive integration]]. Sample application can be found under [[https://github.com/xorock/zend-expressive-phptalrenderer-example|Github repository]].
 +  * [[https://github.com/xorock/zend-phptal|Zend Framework 3 integration]].
 +
 +=====CodeIgniter=====
 +
 +  * With some glue from [[http://code.google.com/p/ci-ext/|ci-ext wrappers]].
 +  * [[http://codeigniter.com/forums/viewthread/130830/|Example integration on CI forum]]
 +
 +=====Kohana=====
 +
 +  * [[http://github.com/Dismounted/KOtal|KOtal: Kohana 3 PHPTAL Module]]
 +  * [[http://blog.setunai.net/20080125/kohanaフレームワークでphptalを利用してみた/|Example in Japanese]] FIXME add detailed English description
 +
 +===== Symfony =====
 +
 +  * [[http://components.symfony-project.org/templating/trunk/book/05-Template-Renderers#chapter_05_sub_using_an_existing_renderer_library|Symfony template renderers]] with PHPTAL as example.
 +  * [[http://github.com/neni/NeniPhptalBundle|Symfony2 phptal bundle]]
 +
 +===== Other =====
 +
 +    * [[http://doophp.com/forum/viewtopic.php?f=11&t=1165|DooPHP]]
 +
 +Doctrine 1 ORM is not compatible with PHPTAL, because its implementation of ''__isset'' is not consistent with behavior of standard PHP objects. You can [[http://lists.motion-twin.com/pipermail/phptal/2010-November/002352.html|patch]] PHPTAL to work around this problem or upgrade to Doctrine 2.
 +
 +
 +  * [[http://bakery.cakephp.org/articles/dkvasnicka/2007/04/24/using-phptal-for-templates-phptalview-class|cakePHP]]
 +  * [[http://www.artaengine.com|Arta Engine]] works with PHPTAL out of the box
 +  * [[http://www.github.com/niterain/PhpTalView|Laravel]]
 + 
 +
 +1