[symfony-users] Re : [symfony-users] Powered By Symfony images?

2007-04-05 Thread Loïc Vernet
good idea, i'd like one too to put on my blog. COil - Message d'origine De : Joby Walker [EMAIL PROTECTED] À : symfony-users@googlegroups.com Envoyé le : Jeudi, 5 Avril 2007, 6h07mn 22s Objet : [symfony-users] Powered By Symfony images? I'm adding a credit page to an application and

[symfony-users] sfDimensionsPlugin

2007-04-05 Thread Dustin Whittle
All, Many of us work on web applications that need to change based on what country a user is in. At the most basic forms this usually consist of changing the language of text and the formatting of times and dates. symfony makes this easy with all of its internationalization and localization

[symfony-users] Re: Powered By Symfony images?

2007-04-05 Thread Scott Meves
Perhaps we can get ahold of the original designer (justinm) and ask him to post the high-res versions? http://www.symfony-project.com/weblog/2006/11/16/and-the-winner-is.html -Scott - Scott Meves Stereo Interactive Design http://www.stereointeractive.com On Apr 5,

[symfony-users] troubles with url encoding...

2007-04-05 Thread Hadrien Boyé
Hi, i cant't get why the url encoding format is different from the dev and the prod environement... in the dev environement : the helper link_to_remote($myTitle, array(... , 'url' = 'myModule/myAction?cat[param]=value', ...' )); generates this kind of url : myModule/myAction?cat[param]=value

[symfony-users] Re: Get elements from form

2007-04-05 Thread g0d br
thank you that's what i need 2007/4/4, Kiril Angov [EMAIL PROTECTED]: [code] $numbers = $this-getRequestParameter(number); $user = new User(); $user-setName($this-getRequestParameter('username')); $user-save() foreach ($numbers as $number) { $phone = new Phone();

[symfony-users] question regarding using criteria object

2007-04-05 Thread Sushil Choudhari
hi, I am trying to use the Criteria object to do something like this: I have a Table A which has a updated_at DateTime field. How do I create a criteria object to get all the entries in table A where updated_at falls in current week. sql query would look like select * from TABLE_A where

[symfony-users] Re: question regarding using criteria object

2007-04-05 Thread Muhammad Asif Ali
Hi... Query objects between two dates with Criteria Say you look for the objects of class Foo being created between $from_date and $to_date. This should do the trick: $c = new Criteria(); $criterion = $c-getNewCriterion(FooPeer::CREATED_AT , date('Y-m-d', $from_date), Criteria::GREATER_EQUAL