aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/annotations.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-04-21 19:44:46 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-04-21 19:44:46 +0000
commita0e1576d2b50b7640637eff763fa077d2cda35bc (patch)
treedf40fe384fec9cfa8abc1d5d0df06bda1cac2273 /engine/lib/annotations.php
parentc06885114ab45eb1f24ff26e23ab317b8bd7604e (diff)
downloadelgg-a0e1576d2b50b7640637eff763fa077d2cda35bc.tar.gz
elgg-a0e1576d2b50b7640637eff763fa077d2cda35bc.tar.bz2
Reverting the annotation changes because they're not ready yet.
git-svn-id: http://code.elgg.org/elgg/trunk@9010 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/annotations.php')
-rw-r--r--engine/lib/annotations.php13
1 files changed, 6 insertions, 7 deletions
diff --git a/engine/lib/annotations.php b/engine/lib/annotations.php
index ca8f6b2e1..7a4e62921 100644
--- a/engine/lib/annotations.php
+++ b/engine/lib/annotations.php
@@ -404,7 +404,6 @@ function elgg_list_entities_from_annotations($options = array()) {
* @return mixed
*/
function elgg_get_entities_from_annotation_calculation($options) {
- $db_prefix = elgg_get_config('dbprefix');
$defaults = array(
'calculation' => 'sum',
'order_by' => 'calculation desc'
@@ -416,14 +415,14 @@ function elgg_get_entities_from_annotation_calculation($options) {
// you must cast this as an int or it sorts wrong.
$options['selects'][] = 'e.*';
-// $options['selects'][] = 'a_msv as value';
- $options['selects'][] = "$function(cast(a_msv.string as signed)) as calculation";
+ $options['selects'][] = "$function(cast(v.string as signed)) as calculation";
- // need our own join to get the values because the lower level functions don't
- // add all the joins if it's a different callback.
- $options['joins'][] = "JOIN {$db_prefix}metastrings a_msv ON n_table.value_id = a_msv.id";
+ // need our own join to get the values.
+// $options['joins'][] = "JOIN {$db_prefix}metastrings msv ON a.value_id = msv.id";
+// $options['joins'][] = "JOIN {$db_prefix}entities ae ON a.entity_guid = ae.guid";
- // don't need access control because it's taken care of by elgg_get_annotations.
+ $options['wheres'][] = get_access_sql_suffix('n_table');
+// $options['wheres'][] = "e.guid = a.entity_guid";
$options['group_by'] = 'n_table.entity_guid';
$options['callback'] = 'entity_row_to_elggstar';