Tagged Questions
3
votes
1answer
635 views
How to get users (entities) for a certain field value?
I want to write a function that returns users which have entered a certain value to a custom user field.
Lets say there is a custom birthday field for every user. What would be the best way to get ...
1
vote
1answer
118 views
How to I get an extra field for a user profile when using EntityFieldQuery()
I'm currently using something like this:
$users = new EntityFieldQuery();
$users->entityCondition('entity_type', 'user')
->propertyCondition('status', 1);
$result = ...
1
vote
1answer
206 views
How to Add\Edit ECK entitys from front-end?
I'm using ECK module for defining custom entities. Also there are users that have permissions to add and edit entities from specific bundle. I'm trying to create a front-end menu for this users with ...