Created
October 23, 2013 19:26
-
-
Save chadsten/7125017 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function get_users($type = 'all', $status = 'all' , $state = 'all', $county = 'all') { | |
| $query = "SELECT * from users"; | |
| $result = db_query($query); | |
| foreach ($result as $user) { | |
| $users[] = $user->uid; | |
| } | |
| $user_list = entity_load('user',$users); | |
| foreach ($user_list as $user_entity) { | |
| $wrapper = entity_metadata_wrapper('user', $user_entity); | |
| dpm($wrapper); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment