addFrom( $this->getConnector()->getAdapter( 'Occurrence' )->GetTable() ); } /** * Sets arguments. * * @param string $field - Name field. * @param mixed $value - Value. * @return self */ public function addArgument( $field, $value ) { $this->arguments[ $field ] = $value; return $this; } /** * Resets arguments. * * @return self */ public function clearArguments() { $this->arguments = array(); return $this; } }