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/WhereQueryComponent.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/WhereQueryComponent.php')
-rw-r--r-- | engine/classes/WhereQueryComponent.php | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/engine/classes/WhereQueryComponent.php b/engine/classes/WhereQueryComponent.php deleted file mode 100644 index 92062de32..000000000 --- a/engine/classes/WhereQueryComponent.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php -/** - * @class WhereQueryComponent - * A component of a where query. - * @see Query - */ -class WhereQueryComponent extends QueryComponent -{ - /** - * A where query. - * - * @param string $left_table The table on the left of the operator - * @param string $left_field The left field - * @param string $operator The operator eg "=" or "<" - * @param string $right_table The table on the right of the operator - * @param string $right_field The right field - * @param string $link_operator How this where clause links with the previous clause, eg. "and" "or" - */ - function __construct($left_table, $left_field, $operator, $right_table, $right_field, $link_operator = "and") - { - global $CONFIG; - - $this->link_operator = sanitise_string($link_operator); - $this->left_table = $CONFIG->dbprefix . sanitise_string($left_table); - $this->left_field = sanitise_string($left_field); - $this->operator = sanitise_string($operator); - $this->right_table = $CONFIG->dbprefix . sanitise_string($right_table); - $this->right_field = sanitise_string($right_field); - } - - /** - * Return the SQL without the link operator. - */ - public function toStringNoLink() - { - return "{$this->left_table }.{$this->left_field} {$this->operator} {$this->right_table}.{$this->right_field}"; - } - - function __toString() - { - return "{$this->link_operator} " . $this->toStringNoLink(); - } -} |