20 June, 2010
Elink Media posts a followup;
I’ve created a new branch on my Github project “zf1-doctrine2″. The “modular_setup” branch shows how we could setup Zend Framework with the modular approach, while still be able to use Doctrine 2 as the ORM for each module.
Oh well, the idea is to make each module decoupled with […]
Posted in Development, Doctrine, Featured, Zend Framework
20 June, 2010
Rob Allen posts; I’ve updated Akrabat_Db_Schema_Manager so that it now supports table prefixes.
It uses the application.ini key of resources.db.table_prefix as I couldn’t think of a better one and then uses that for the schema_version table’s name and also makes it available in your change objects.
For example, if application.ini contains resources.db.table_prefix = “myapp”, then […]
Tags: Models, MySQL, Zend Framework, Zend_Db
Posted in Classes, Development, Zend Framework
19 June, 2010
Elink Media posts; Doctrine 2 is in beta. It is for sure one of the most exciting things that caught my attention recently.
As a Zend Framework user, I started looking into ways to integrate Doctrine 2 with Zend Framework (currently in version 1).
The same as any other times, the solutions are already out there. […]
Tags: Doctrine, Zend Framework
Posted in Development, Doctrine, Zend Framework
17 June, 2010
Lebesold publishes another screencast; First of all, I’d like to thank you all for your patience! Zendcasts takes quite a bit of time and research to put together and I’m deeply touched by all your support.
On a personal note, my wife and I are heading out of North America in a week […]
Tags: Zend Framework, Zend_Log
Posted in Development, Videos, Zend Framework
16 June, 2010
Abraham Elias writes;
Ext JS is now Sencha. Exciting things are happening! Today, we’re combining forces with the jQTouch and Raphaël projects, changing our company name to Sencha, and moving our web address from www.extjs.com to www.sencha.com.
jQTouch and Raphaël are the leading open source projects in their areas, and we’re incredibly excited to have their creators, […]
Tags: Ajax, ExtJS, jQTouch, Raphaël, Sencha
Posted in Ajax, Development
8 June, 2010
Matthew Weier O’Phinney answers a very common question;
“Is there a way to generate the WSDL file from a class using a Zend component?”
Yes — via Zend_Soap_Autodiscover:
http://framework.zend.com/manual/en/zend.soap.autodiscovery.html
A typical workflow is to do the following:
if (‘GET’ == $_SERVER[’HTTP_METHOD’]) {
$server = new Zend_Soap_Autodiscover();
} else {
[…]
Tags: SOAP, WSDL, Zend Framework, Zend_Soap_Autodiscover, Zend_Soap_Server
Posted in Development, Documentation, Zend Framework