Categories
- Administration (8)
- Asterisk PBX (2)
- Debian GNU/Linux (2)
- Development (29)
- Doctrine ORM (3)
- jQuery (2)
- Zend Framework (7)
- How To's (6)
- Ideas (5)
- Networking (3)
- Software (7)
- Joomla! (1)
- Mozilla Firefox (2)
- osCommerce (3)
- WeeChat (1)
- Uncategorized (1)
- Administration (8)
Archives
- September 2010 (1)
- August 2010 (1)
- July 2010 (3)
- June 2010 (8)
- May 2010 (1)
- March 2010 (3)
- February 2010 (2)
- January 2010 (2)
- December 2009 (4)
- November 2009 (3)
- October 2009 (7)
- September 2009 (4)
- August 2009 (2)
Tags
acl add-on authentication bootstrap chroot cli cre loaded css date picker filter fix freedom gnu/gpl go google javascript log4net logging model mutator mysql notification odbc oop orm patch php plug-in python resource ruby server socket status stylish tip tools tracing tray view x server zend_auth zend_controller zend_date zend_formBlogroll
See Also
Tag Archives: orm
Translating variable strings with gettext or “How to translate Doctrine’s enums”
Translating of something with gettext is well-discussed problem, so there’s no need to discuss it again. Everything works like a charm, when you dealing with string constants. But what to do if you need to translate a string retrieved from some variable, … Continue reading
Complex mutators for Doctrine v.1.x, REVISITED
After I have started to implement proposed in previous post complex mutator I found that it’s not really as good as I thought. Well for one model it probably is OK. And of course if it can be used with extended Doctrine_Record class … Continue reading
Complex mutators for Doctrine v.1.x
If you work with Doctrine ORM you probably met situation when you need to mangle values on setting or getting them. Especially when you are using different types. One of such problems are dates. As I’m using Zend Framework I prefer … Continue reading
Bind model to the Zend_Form…
In my previous post I have described how to fill model with values from the Zend_Form. But reverse process is also very important. If you are using Zend_Db_Table you probably will not need any special methods as you can use Zend_Form::setDefault($array) … Continue reading
Bind Zend_Form values to the model. Part 2 (Array-type properties)
In my previous post I’ve added a simple binding functionality to Zend_Form. But once I’ve implemented it in real world with Doctrine PHP ORM as my BLL, I found that it can’t work seamlessly with my model’s properties of array type. In … Continue reading