public function where($cond, $value = null, $type = null)
{
$this->_parts[self::WHERE][] = $this->_where($cond, $value, $type, true);
return $this;
}
/**
* Adds a WHERE condition to the query by OR.
*
* Otherwise identical to where().
*
* @param string $cond the WHERE condition
* @param mixed $value OPTIONAL The value to quote into the condition
* @param int $type OPTIONAL The type of the given value
*
* @return Zend_Db_Select this Zend_Db_Select object
*
* @see where()
*/