A tool of Symfony PHP framework that allows automatic generation of administrator sections in a web application

learn more… | top users | synonyms

0
votes
0answers
51 views

Symfony2: stored procedure and Admingenerator

In my symfony project I use admingenerator and I have to select my records by a stored procedure. But my result is nativeQuery type while I want a doctrine / orm /query type for listing result in ...
0
votes
0answers
53 views

Session symfony 2.2 admingenerator fosuserbundle LOGS OUT

Well, since I upgraded my Symfony to 2.2 version something happened with FosUserBundle. Let me introduce you first what do I currently have. I'm using AdminGeneratorBundle connected with FosUserBundle ...
0
votes
1answer
91 views

why the symfony admin generator is giving error while trying to save the content

I am using symfony 1.0 and admin generator is used for saving the news content. In configuration.yml file I see the below content: generator: class: sfPropelAdminGenerator param: ...
0
votes
1answer
242 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
168 views

How to make admingenerator ignore empty fields in symfony 2?

I'm currently struggling with the Symfony 2 AdminGenerator. I try making a basic admin user management form, and this includes editing of user data. In there I have field email, password and isActive. ...
0
votes
2answers
317 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
148 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
151 views

How to use a custom CSS file in an admin generator (for sfGuardUser)?

I want to add my own css to sfGuardUser model I have this kind of configuration in generator.yml generator: class: sfPropelAdminGenerator param: model_class: sfGuardUser theme: ...
0
votes
1answer
89 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
89 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 ...
0
votes
1answer
857 views

Raw filter on Sonata Admin Bundle configureShowFields

I'm doing a project with Symfony2 and Sonata Admin Bundle. How I can apply the filter raw of twig (to display formated text) in action configureShowFields? I would not override Sonata templates... ...
0
votes
2answers
182 views

Overwriting a field of AdmingeneratorGeneratorBundle

I am trying to overwrite a field of the AdmingeneratorGeneratorBundle and want to append a link to a certain field. That works quite well following the documentation: {% extends_admingenerated ...
1
vote
1answer
109 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 ...
0
votes
1answer
254 views

admingenerator symfony2 CSS not found

I am trying to get started with admingenerator bundle for symfony2 on windows: http://symfony2admingenerator.org/installation.html I have followed the instruction for the out of the box, latest, ...
0
votes
1answer
289 views

Symfony Admin generator: sort on non existing field(in partial)

in an admin generator created module I added a fictif field using a partial. but apparentely the "sort" link (exists on every field name to set the sorting) can I make symfony show a link for sorting ...
2
votes
1answer
439 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
0answers
235 views

Symfony filter field display credentials

In my generator.yml, I have credentials set for a field. Now, if someone without that credential is using the site, that field is hidden in list view but in the filters, it is not hidden. Of course ...
0
votes
1answer
257 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
225 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
282 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
112 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
287 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
287 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 ...
1
vote
1answer
435 views

Custom render in generated admin with Symfony

So, here's my little problem: I have generated an admin with the Symfony admin generator, but I need to display a link (or a button for that matter) that can be click to open a C.V. file. As of now, ...
5
votes
1answer
765 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
88 views

Create a new object using inheritance

I'm developing a new module for an application based in the admin generator. Once the designed data model has some inheritance relations (Authorization, AuthorizationA, AuthorizationB), I would like ...
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 ...
0
votes
1answer
378 views

symfony's propel admin generator error

i'm working on a symfony project based on an existing mysql database, and i generated the shcema.yml from it.The first app created is the backend. But when i try to add a module with the command $ ...
0
votes
2answers
506 views

Undefined variable with symfony (admin-generator)

I wanted to create my own template for the admin-generator, so I've followed a tutorial and i'm now making my own template based on the "admin" template. But I defined a new variable called "rubrique" ...
0
votes
1answer
263 views

Including slots in auto-generated admin modules with Symfony

Is there a way of including a slot from generator.yml in Symfony? I would like to add a piece of HTML code only within some backend modules, and slots is the best idea I can come up with. If not with ...
4
votes
1answer
1k views

Symfony admin generator, link to filtered result

i have an admin generator for the folowing model: #schema.yml Author: columns: name: { type: string(255), notnull: true } Book: columns: authorId: { type: integer, notnull: true } ...
1
vote
1answer
189 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 ...
2
votes
2answers
433 views

Restrict objects available in symfony admin generator for all actions

One can change the query that is used for the list action in an admin generator configuration by using the table_method option. For example, # apps/backend/modules/job/config/generator.yml config: ...
1
vote
2answers
908 views

Symfony doctrine admin generator list filters get method with no csrf token

EDIT: The solution turned out to be along these lines: public function executeIndex(sfWebRequest $request) { if ($request->getParameter('first_name')) { ...
0
votes
1answer
772 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
310 views

How to get count of Post comments to display it in backend Posts list?

If it helps, here is my schema for Posts and Comments: BlogPost: actAs: Timestampable: ~ I18n: fields: [title, body] tableName: blog_posts columns: #id: { type: integer(4), ...
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] ...
1
vote
3answers
1k views

Symfony 1.4 admin generator - use raw HTML in 'list' view?

I am using TinyMCE for rich text editing of a column which I want to show on the Symfony's admin generator 'List' view. However when I include this column, the escaped HTML is shown, rather than ...
0
votes
1answer
318 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: ...
1
vote
1answer
474 views

Default action for sfDoctrineRouteCollection

I'm using Symfony's admin generator and on the whole everything is working as I would like. However, I'd like to know if there is an easy way to set the default action for a module. The generator ...
0
votes
3answers
2k views

symfony 1.4 admin generator unset fields

I've used the "doctrine:generate-admin" task. Everything is working but I want to use the generator.yml file to unset some form fields there rather than having to unset them in the Form class itself. ...
1
vote
3answers
1k views

Symfony generator.yml link method

How do I specify the method of an action (similar to _delete): generator: config: list: object_actions: myaction: {label: Label, action: myaction, method: post} This ignores my ...
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
3answers
629 views

symfony admin generator form object

Hey guys, I've used the Symfony admin generator for a module. Everything is working, but when the form for my model is instantiated, I need to pass in my own option. I could do this myself by ...
1
vote
1answer
537 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: ...
2
votes
1answer
2k views

how to remove the “new” link in doctrine admin generator

Im using the doctrine admin generator, and I want to not allow the user to create new records (just to show them), is there any way to do that by setting up the "generator.yml" ? I've succeeded to ...
1
vote
2answers
530 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 ...
0
votes
1answer
333 views

Override executeCreate action in admin generator module

One feature of the current project where I am working, is to send an email notification with some information about the recent created object. Here is the code of my current action code: public ...
0
votes
4answers
760 views

Override executeIndex in admin modules

In the administration generated by symfony, how do I override the method executeIndex() ? I want to list only the items that have a specific state, and all I found in ...

1 2