diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-25 14:25:57 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-25 14:25:57 +0000 |
commit | ce16e90e8792f69f4b733a044280e0f38d651bb2 (patch) | |
tree | 57319f2fc4d2332e36c0aa30455f83f0ff158f82 /engine/classes/JoinQueryComponent.php | |
parent | 131eb5f919b078e47fe469a8b904c2434f1a2b4f (diff) | |
download | elgg-ce16e90e8792f69f4b733a044280e0f38d651bb2.tar.gz elgg-ce16e90e8792f69f4b733a044280e0f38d651bb2.tar.bz2 |
Closes #2511. Query object classes removed.
git-svn-id: http://code.elgg.org/elgg/trunk@7119 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/classes/JoinQueryComponent.php')
-rw-r--r-- | engine/classes/JoinQueryComponent.php | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/engine/classes/JoinQueryComponent.php b/engine/classes/JoinQueryComponent.php deleted file mode 100644 index 25966f269..000000000 --- a/engine/classes/JoinQueryComponent.php +++ /dev/null @@ -1,32 +0,0 @@ -<?php -/** - * @class JoinQueryComponent Join query. - * Represents a join query. - * @see Query - */ -class JoinQueryComponent extends QueryComponent -{ - /** - * Construct a join query. - * @param string $table Table one to join... - * @param string $field Field 1 with... - * @param string $table2 Table 2 ... - * @param string $field2 Field... - * @param string $operator Using this operator - */ - function __construct($table1, $field1, $table2, $field2, $operator = "=") - { - global $CONFIG; - - $this->table1 = $CONFIG->dbprefix . sanitise_string($table1); - $this->field1 = sanitise_string($field1); - $this->table2 = $CONFIG->dbprefix . sanitise_string($table2); - $this->field2 = sanitise_string($field2); - $this->operator = sanitise_string($operator); - } - - function __toString() - { - return "join {$this->table2} on {$this->$table}.{$this->$field} {$this->$operator} {$this->$table2}.{$this->$field2}"; - } -} |