0
votes
1answer
228 views

symfony 1.4 propel save embedForm one-to-one relationship

I have two tables and this is how the schema looks like: customer: id: username: { type: varchar, size: 50, required: true } password: { type: varchar, size: 50, required: true } hash: { type: ...
0
votes
2answers
296 views

Disable escaping for admin generator list action?

I am configuring Symfony 1.4's admin generator for one of my data models ("Achievement"). The "Achievement" data model has a field ("url") that stores a URL to an external resource, and I would like ...
0
votes
1answer
144 views

admin generator yaml: link to another module

How can I generate link to another module in Symfony admin generator Yaml? I am trying to link from sfGuardUser module (user list) to profile/viewProfilesDetails but it always points to ...
0
votes
1answer
87 views

symfony doctrine admin generator class not found

I get the following error in my doctrine generated module that I generated using symfony doctrine:generate-module --generate-in-cache frontend module_name ModelName I have tried clearing the ...
0
votes
1answer
82 views

sfDoctrineGenerator Delete does not work

Lately, I have been exploring the sfDoctrineGenerator of Symfony for my backend interface. The problem is this: I am using sfDoctrineGuardPlugin for user management. The sfGuardUser module uses ...
1
vote
1answer
105 views

How to add object_action that leads to a action_page.xml?

I want to add an action that will output xml file from object's fields. Here is an example: object_actions: _edit: ~ _delete: ~ export_xliff: {label : Export Xliff, action: exportXliff} This ...
2
votes
1answer
423 views

symfony batch action security

my security.yml: all: is_secure: true new: credentials: [add_ticker_source] edit: credentials: [edit_ticker_source] delete: credentials: [delete_ticker_source] batchDelete: //I don't know ...
0
votes
1answer
240 views

symfony change url of object action

I have an object action approve and I'd like to change its url from /module/ListApprove/action?id=XXX to /module/:slug/approve. I have tried adding a route in routing.yml but no help. Also, I have ...
0
votes
0answers
219 views

Some Error with symfony forms' submission

This is in reference to this question. I have a form MakenewForm.php. My action: class posterActions extends autoPosterActions { public function executeMakenew(sfWebRequest $request) { ...
1
vote
1answer
274 views

Symfony alternate new action

I have a server where I need to store some images. Now the images can be either uploaded or created on the fly let us say just by adding some text to some default picture(So I made a file ...
0
votes
2answers
107 views

Symfony submit to same url

I have a form with some text fields and I have a preview button that needs to submit the form to the same controller. And then in the controller, I need to extract the values and populate a form with ...
4
votes
1answer
2k views

Symfony admin generator— a button for save and back to list

How can I add a save and back to list button in the view for creating new record? In general, I want more buttons so I'm looking for a generic answer. EDIT: Default generator provides me with two ...
2
votes
1answer
281 views

Error in link_to in symfony admin generator

I made two List actions. One actually corresponds to the default _new action and other is slightly different. So in generator.yml, I put: list: max_per_page: 10 title: All Posters ...
0
votes
0answers
275 views

Saving a date with Symfony 1.4 admin generator

Every time I try to save a date in a form generated with the admin generator I get this error: 500 | Internal Server Error | Doctrine_Connection_Pgsql_Exception SQLSTATE[22007]: Invalid datetime ...
5
votes
1answer
735 views

url_for or link_to in backend with admin generator Symfony

in backend_dev i generated with admin generator module News: localhost/backend_dev.php/news/2/edit this is link for edit News ID 2. How can i generate this link for other ID? ...
0
votes
1answer
2k views

Custom columns in list view in Symfony admin generator

tl;dr: I need to show data from two different tables in the list view of the Symfony admin generator (preferably via a JOIN statement) I'm using the sfDoctrineGuardPlugin to manage the users of my ...
1
vote
1answer
188 views

How can admin generator modules be enhanced with needed features of Doctrine actAs Versionable?

We're using actAs: Versionable for one model in our Symfony 1.4 app. We currently edit this model using an admin-generator module. The UI gives no indication that versioning is active at all. I ...
0
votes
1answer
757 views

symfony admin generator foreign key listing

Hi I am using symfony 1.4 doctrine orm. I have three tables for example course, calendar and course_offering. Course_offering table has two foreign keys to course and calendar table. In admin ...
0
votes
1answer
1k views

Symfony 1.4 doctrine admin generator and i18n fields

I have this pretty trivial model: Category: columns: id: { type: integer } name: { type: string(50) } description: { type: text } actAs: I18n: fields: [name, description] ...
0
votes
1answer
315 views

How to move Symfony Admin Generator files to a plugin?

I try to move my module which generated by the Admin Genrator to a plugin. Error: Fatal error: Class 'BaseFooGeneratorConfiguration' not found in ... The action.class.php includes to files: ...
2
votes
2answers
2k views

Symfony 1.4 doctrine admin generator display i18n form fields

My problem is that iam using admin generator for model with some extra virtual attributes which i need to have in generator.yml definitions: config: form: display: [name, design_by, ...
1
vote
1answer
530 views

Symfony admin generator - One-to-one relationships

I have in my model defined two entities linked by a one-to-one relationship: User: columns: home_address_id: integer relations: HomeAddress: class: Address local: ...
1
vote
2answers
520 views

Symfony Admin Generator title override

I'd like to add the list of filters in the title of my executeIndex method. Does anyone know if it's possible to override the admin generator list title from the executeIndex method? I've been ...
1
vote
2answers
2k views

Symfony 1.4: Doctrine i18n generator issues

I have a weird problem with my i18n doctrine schema and i.a. the admin generator. (Please look at the edit part below first) The schema looks like: CargoSize: connection: doctrine actAs: ...
1
vote
1answer
326 views

What's the best way to customize / add pages to the admin generator?

I'm using Symfony 1.4 and Doctrine. My application's backend was built using Symfony's admin generator. It works great when I want to display basic stuff. But tehre's not a lot of documentation on ...
5
votes
2answers
5k views

How to “order by” a sfWidgetFormDoctrineChoice in the Admin Generator

I'm using Symfony 1.4 and Doctrine. Let's say I have 2 classes : a Brand and a Product. When I create a new product in the Admin Generator based admin, I'd like to choose a brand from a dropdown ...
3
votes
1answer
4k views

Create a new delete object_action in Symfony 1.4's admin generator

I'm using Symfony 1.4/Doctrine's admin generator. There's a list of questions and I'd like to be able perform a custom object_action on each of them. What I'm looking for is to mimic the _delete ...