Tagged Questions
1
vote
1answer
62 views
FOSUserBundle extend propel User
I'm using FOSUserBundle and Propel in a Symfony 2.2 project. I'm trying to extend the User class and add a new method to it like so:
namespace Acme\UserBundle\Model;
use FOS\UserBundle\Propel\User ...
1
vote
0answers
36 views
How do I get the children of a specific branch using Propel 1.6 Nested Set under Symfony2?
I have nested set table like this (partially shown):
ROOT
Boats
ATV
Sport
Utility
Youth
Motorcycle
Outboard Motors
Side x Side
Snowmobiles
WaveRunners
Generator
I have Propel working under ...
0
votes
1answer
33 views
Symfony2 & Propel: How to query objects ordered by their i18n column
Suppose my schema look something similar to the following -
<?xml version="1.0" encoding="UTF-8" ?>
<table name="vegetables" phpName="Vegetable">
<column name="id" type="integer" ...
1
vote
0answers
47 views
Validate a non-model attribute
Env: Symfony2.2 + Propel 1.6
I try to validate a 'customer' form which is linked to the model (Customer) to manage a "create account" (form 1) and a "login account" (form 2). The user is required to ...
0
votes
2answers
78 views
Propel and related data using FOSUserbundle
I'm using FOSUserBundle and I've created a Message table with two columns, that are relating to the User from FOSUserBundle.
I want to get messages and information about the author using one query.
...
1
vote
1answer
149 views
FOSUserBundle Propel
I used the FosUserBundle with Symfony2 (2.2) and the ORM Propel (1.6).
I recently updated my project (sf2.1 => 2.2) and I have FOSUser problem with exception:
UserQuery not found
BaseUser not found
...
0
votes
0answers
44 views
How to customize the propel model form type using form theming
I'm using the propel model type and I'd like to display the generated input on a single line with the following input:
Now I'm not sure how to make these customizations since using form theming, ...
1
vote
0answers
97 views
How to make twig render a form element with a different theme block from propel form types
I was trying to use the block_name attribute to select a different theme for a certain form input:
$builder->add('titleFragments', new Form\DerivedType\SortableCollectionType(), array(
...
0
votes
1answer
69 views
PropelParamConverter not working
Can someone please tell me how to make PropelParamConverter work for a Symfony2 project?
I already have the 'SensioFrameworkExtraBundle' bundle installed and working for the implicit case (without the ...
0
votes
0answers
86 views
Propel symfony2 error relationships Array to string conversion
Sorry for my english.
Symfony 2.1 / PropelBundle 1.7
I have an error with sf2
Error
Unable to execute DELETE statement Notice: Array to string conversion
My form type :
...
0
votes
0answers
46 views
Propel NestedSet with KnpMenuBundle
I can't find the good algorithm to create a menu with KnpMenuBundle using Propel NestedSet behavior.
Actualy, i have this code :
$menu = $this->factory->createItem('root');
foreach ($pages as ...
0
votes
0answers
76 views
Symfony2 propel validation with i18n behavior
I want to validate a form in Symfony2, and I'm using Propel.
I have a problem for validating fields using Propel i18n behavior.
This is my schema.xml :
<table name="text">
<column ...
0
votes
1answer
58 views
Validation with Symfony2 and Propel
I've recently started using symfony2 and propel for a project. It's not a smooth ride but its coming along ok.
A few nights ago, I got stuck with form validations. I have my validation.yml defined ...
0
votes
2answers
119 views
Symfony2 commit form using Doctrine - MappingException
I have created a form using Propel which submits fine, and validates. The problem comes when I try to commit the $user object - I get a MappingException. I really have no idea where this is coming ...
0
votes
1answer
41 views
Symfony2 Dependency Injection
I would like to do the following:
Inside a bundle through dependency injection add propel connection.
So every bundle can have a connection that on load will be merged all together.
Is this ...
0
votes
2answers
32 views
symfony2 reinstall vendors
after execute ./bin/vendors install --reinstall,
I have the error :
16384: The PropelBundle uses a new branching model, you should switch
to the 1.0 branch
What should I do ?
2
votes
0answers
195 views
Symfony2 Forms - Selected Value in Dropdown using Propel ModelType
I'm trying to set the selected value of a 'model' (ModelType from the Symfony Propel Bridge) form type and I'm failing miserably.
There is Product table with the following structure:
id, name, ...
0
votes
0answers
56 views
Symfony2 get User Object in Propel Model
I am using FOSUserBundle with custom class. Everything is fine, my only problem is the following:
How inside a Propel model can get current user? On Symfony 1.4 that was
...
0
votes
2answers
329 views
Symfony+Propel: Setting connection collation
I'm using Symfony 2.1.6 framework integrated with Propel 1.6.7 as database ORM through a MySQL Server 5.5.28 and I'm having problem to set database collation to utf8_unicode_ci.
My ...
1
vote
2answers
302 views
Large data set import in Symfony 2
I'm working on a Symfony 2 based project and need to regularly import 1.5 million products from a .csv document using a cron task.
The import currently looks like this:
...
...
1
vote
0answers
73 views
Symfony2 WebTestCase ignores my database changes when run via ant in Jenkins
I have a system that catches login events and triggers a response (popping up a modal) after the redirect based on values stored in a database.
In order to properly test this I have set up a ...
0
votes
1answer
76 views
Grouping filters in Propel
I currently have a Propel based query that looks like this:
$product = ProductQuery::create()
->filterByLive(1)
->filterByApproved(1)
->findOneByFilename($filename);
I regularly use ...
0
votes
1answer
98 views
Propel, building a dynamic query?
Right now I am using the following method:
$claims = ClaimQuery::create()
->leftJoinUser()
->withColumn('CONCAT(User.Firstname, " ", User.Lastname)', 'name')
...
0
votes
1answer
65 views
Symfony propel addAnd
I dont know propel. I need to convert this propel code. In this code the strings $array[$i] will concordinate with $array[0] or the last string of $array[$i] only stored in this $array[0].
...
2
votes
1answer
183 views
How to order related propel model in symfony2 form
I am using symfony2 form along with propel. I am having trouble on how to order the related entity from propel's model.
The abstracted code below, is taken from ...
2
votes
1answer
223 views
symfony propel:form:generate throws ErrorException
i work with symfony-standard 2.1
my composer.json file:
{
"name": "xxx",
"description": "xxx",
"autoload": {
"psr-0": {
"": "src/"
}
},
"minimum-stability": "dev",
"authors": [
...
2
votes
1answer
239 views
PropelBundle Installation On Symfony 2.1
I'm trying to install the PropelBundle branch 1.1 on Symfony 2.1. I followed the instructions for a manual install, but not sure where to register the namespaces anymore.
Now I get this error ...
1
vote
1answer
335 views
Propel - Symfony2: propel.path must be defined. DependencyInjection\Exception
Running this commad on CLI:
php app/console propel:build
got
[Symfony\Component\DependencyInjection\Exception\InvalidArgumentException]
The parameter "propel.path" must be defined.
In ...
0
votes
1answer
324 views
Symfony2 - Propel and KnpPaginatorBundle: how to sort by column?
In a Symfony2 project using Propel ORM, I am trying to sort a list view by column, using KNP Paginator bundle. My code is the following:
public function indexAction()
{
$query = ...
0
votes
0answers
35 views
filterByTableA()->_or()->filterByTableB() returns no match if all rows are given
I've got 3 Tables:
Contact (id, name, street, city)
Vendor (id, bank_account)
Customer (id, customer_number)
Both tables, Customer and Vendor, have a foreign key to Contact.
N table of Contacts ...
1
vote
1answer
76 views
No Base and Custom forms in symfony2?
We had this concept of baseform and custom form in symfony 1.4. In symfony2, I believe this concept is dropped. I am using propel:form:generate to generate forms, am I supposed to make modifications ...
1
vote
1answer
135 views
overriding propel.xml file from FOSUserBundle
I am extending FOSUserBundle for my project, But i dont want the email field to be a unique one, so extended the schema.xml to removed the unique tag from the xml and built the models accordingly. But ...
0
votes
1answer
83 views
Inject custom form generator for symfony 2.0
When I am creating a form with propel:form:generate command, it executes FormGenerateCommand.php from propel bundle, How can I extend this bundle or make it to execute my custom form generator?
1
vote
1answer
363 views
Symfony2 forms: How to deal with many to many “self-referencing” relationships of the type “parent/child”?
I'm using Symfony2 forms and have not been able to find out how to embed an intermediate class form that allows for creating a many to many "self-referencing" relationship of the type "parent/child". ...
1
vote
1answer
64 views
How to get the sum of elements from a request with Propel?
I'm trying to get the sum of variables contained in my object, and I don't know how to do it. I know it's not very clear, so here is an example.
I'm doing a request to obtain all discounts from one ...
1
vote
1answer
199 views
Propel ORM Behavior for defining Parent Child relationships?
I'm using Symfony2 with PropelBundle, and lets say I have the following schema:
<table name="person">
<column name="id" type="INTEGER" primaryKey="true" autoIncrement="true" ...
0
votes
1answer
245 views
Symfony2: SecurityExtension::addUserProviderFactory() and PropelBundle
I am currently migrating a Symfony2 website and I got an issue I am not able to fix.
The error message I got is:
Fatal error: Call to undefined method
...
3
votes
3answers
324 views
Symfony2, Propel fixtures and concrete inheritance
I got an issue with Propel fixtures loading in Symfony2. I have the following schema:
<table name="application" phpName="Application">
<column name="id" type="integer" required="true" ...
0
votes
1answer
131 views
Is it possible to have test_schema.xml in Propel 1.6?
I am using Symfony-2.0 and Propel 1.6.
For testing purposes I'd like to have separate schema file. The reason is that with my current schema it is impossible to load dumped fixtures, because process ...
3
votes
1answer
270 views
Propel 1.6 i18n with Symfony2 forms
Has anyone here used Propel's i18n behaviour with Symfony2? I can't seem to find anything about this, and I don't know how to start.
I'm looking forward to use Symfony2 forms with Propel 1.6 i18n, ...
3
votes
2answers
677 views
Clear propel cache (instance pool)
I need to force reread data from DB within one php execution, using propel. I already have a bit hacky solution: call init%modelName% for corresponding classes, but want something better.
Is there ...
2
votes
2answers
217 views
PropelBundle database:create for postgres
I've installed propel bundle for symfony2.
my database configuration is:
propel:
dbal:
driver: pgsql
user: postgres
password: ...
0
votes
0answers
170 views
Symfony2 Security Component And Propel, Incorrect table name in the select statement
I read this page for manage my symfony2.0 login form with propel orm.
On form submit propel returns this error:
Warning! Unable to execute SELECT statement
[SELECT admin.ID, admin.USERNAME, ...
0
votes
1answer
296 views
Symfony 2 propel:build-model not showing errors?
I am trying to build models like this:
php app/console propel:build-model --verbose
And I am getting:
[Propel] You are running the command: propel:build-model
[Propel] Error
An error ...
1
vote
1answer
293 views
Symfony 2/Propel: Class 'Phing' not found, autoloading?
I've a weird problem with propel.
My configuration in config.yml:
propel:
dbal:
driver: %database_driver%
user: %database_user%
password: %database_password%
...
0
votes
1answer
468 views
How to hydrate columns from JOIN tables into a Propel Object collection using custom SQL in just 1 query?
I'm using Symfony 2 with the propelorm/PropelBundle (Propel 1.6) and MySQL (InnoDB with declared foreign keys), and I'm using custom SQL as shown in the section Using Custom SQL to hydrate a propel ...
1
vote
1answer
1k views
Twig instanceof for for inheritance objects
I am using the following feature from propel http://www.propelorm.org/documentation/09-inheritance.html.
I am also using Symfony2 and Twig
I have a class structure using the above feature that looks ...
0
votes
1answer
121 views
Symfony 2.0 with Propel as ORM - Creating Form Classes - The Type class does not exist
I already built a form object and then render it in a template inside controller. Now I am trying to build the form in a separate PHP class.
Based on the documentation, I have to create a method in ...
1
vote
1answer
198 views
testing a class with a propel query as input
I want to unittest a class that consumes a propel model or criteria object as input.
As this is a Symfony2 bundle without any model of it's own i'd like to think I could use use a class mimicking ...
3
votes
1answer
410 views
PropelORM, Symfony 2 and Unit testing
I'm used to the habit of writing like this:
$results = SomeModelQuery::create()->filterByFoo('bar')->find();
However this does not scale for unit testing because I can't inject a mock object, ...


