Class: Searchgasm::Condition::NotHaveKeywords

Inherits:
Base
  • Object
show all
Defined in:
lib/searchgasm/condition/not_have_keywords.rb

Instance Attribute Summary

Attributes inherited from Base

#column, #column_for_type_cast, #column_sql, #column_sql_format, #klass, #table_name

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

condition_names_for_model, condition_type_name, #explicitly_set_value=, #explicitly_set_value?, handle_array_value?, ignore_meaningless_value?, #initialize, join_arrays_with_or?, #options, #sanitize, #value, #value=, #value_is_meaningless?

Constructor Details

This class inherits a constructor from Searchgasm::Condition::Base

Class Method Details

.condition_names_for_columnObject



5
6
7
# File 'lib/searchgasm/condition/not_have_keywords.rb', line 5

def condition_names_for_column
  super + ["not_have_keywords", "not_keywords", "not_have_kw", "not_kw", "not_have_kwwords", "not_kwwords"]
end

Instance Method Details

#to_conditions(value) ⇒ Object



10
11
12
13
14
15
16
17
# File 'lib/searchgasm/condition/not_have_keywords.rb', line 10

def to_conditions(value)
  keywords = Keywords.new(klass, options)
  keywords.value = value
  conditions = keywords.to_conditions
  return conditions if conditions.blank?
  conditions.first.gsub!(" LIKE ", " NOT LIKE ")
  conditions
end