[symfony-users] admin generator - override executeCreate() action

2010-11-14 Thread ruigoncalves
Hi! One feature of the current project where I am working, is sending an email notification with some information about the recent created object. Bellow, is an action which already had worked on the past! public function executeCreate(sfWebRequest $request) { try {

[symfony-users] [admin generator] - Custom message on object creation

2010-10-18 Thread ruigoncalves
Hi! I am currently using symfony admin generator in order to create a backend administration module for a project. I would like to know how can I custom the displayed message to the user when an object of a certain class is successfully created. I know that I must add some logic/override the

[symfony-users] Custom Under Maintenance page

2010-03-29 Thread ruigoncalves
Hi there! I'm trying to add a custom page to my web application for the times I'm performing maintenance. I'm trying to test the referred page on my development environment but always appear the symfony page. I had already created a module with a proper action and template and also configured

[symfony-users] Symfony Doctrine Migration - Cancel mandatory from a field

2010-03-16 Thread ruigoncalves
Hi there! I would like to cancel the mandatory of a field of my current schema, that is, change the value of the property notnull from true to false. How can I accomplish that with a symfony migration? Thanks in advance, Best regards! -- If you want to report a vulnerability issue on symfony,

[symfony-users] How to access attributes of a class

2010-01-29 Thread ruigoncalves
Hi there! How can I access the attributes of a class? By the name of the attribute or I have to use the appropriate getter/setter? Thanks in advance, Best regards! -- You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send

[symfony-users] Doctrine Migration - Create enum type column

2010-01-18 Thread ruigoncalves
Hi there! Can anyone please tell me how can I create a new column of type enum to implement a Doctrine Migration? Thanks in advance, Best regards -- You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email to

[symfony-users] Re: problema with build-schema in command line

2009-12-18 Thread ruigoncalves
What was the problem? It might help others. On Dec 18, 2:23 pm, Maicol maicol_c...@hotmail.it wrote: I solved the problem. Thanks to all. On 18 Dic, 09:08, Maicol maicol_c...@hotmail.it wrote: Hi, i have this problem: When I write in the command line symfony doctrine: build-schema I

[symfony-users] Re: problema with build-schema in command line

2009-12-18 Thread ruigoncalves
What was the problem? It might help others. On Dec 18, 2:23 pm, Maicol maicol_c...@hotmail.it wrote: I solved the problem. Thanks to all. On 18 Dic, 09:08, Maicol maicol_c...@hotmail.it wrote: Hi, i have this problem: When I write in the command line symfony doctrine: build-schema I

[symfony-users] [Error] - Schema.yml (trying to implement a self-relationship)

2009-12-01 Thread ruigoncalves
Hi all! I have the following schema.yml file for my database definition: Section: actAs: I18n: fields: [name] columns: name: type: string(30) notnull: true color: string urlShortDesc: string Page: actAs: I18n: fields: [name,html,urlShortDesc]