diff options
author | Zach Copley <zach@status.net> | 2009-11-12 19:42:18 -0800 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-01-14 02:41:04 +0000 |
commit | 5bff6651bab35817e4e795f4c325fece3fb1522f (patch) | |
tree | f4ee7aca3ff629282b6284fcbaad4f4a6de709c5 /classes/Profile.php | |
parent | 6e64ce37778abe1494853997df4164dd80eff7ec (diff) |
Started work on interface for displaying connected OAuth apps
Diffstat (limited to 'classes/Profile.php')
-rw-r--r-- | classes/Profile.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/classes/Profile.php b/classes/Profile.php index 25d908dbf..687215b11 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -352,6 +352,29 @@ class Profile extends Memcached_DataObject return $profile; } + function getApplications($offset = 0, $limit = null) + { + $qry = + 'SELECT oauth_application_user.* ' . + 'FROM oauth_application_user ' . + 'WHERE profile_id = %d ' . + 'ORDER BY created DESC '; + + if ($offset > 0) { + if (common_config('db','type') == 'pgsql') { + $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset; + } else { + $qry .= ' LIMIT ' . $offset . ', ' . $limit; + } + } + + $application = new Oauth_application(); + + $cnt = $application->query(sprintf($qry, $this->id)); + + return $application; + } + function subscriptionCount() { $c = common_memcache(); |