method
run_before_filters
v2.1.0 -
Show latest stable
-
0 notes -
Class: ActionController::Filters::InstanceMethods
- 1.0.0
- 1.1.0
- 1.1.1
- 1.1.6
- 1.2.0
- 1.2.6
- 2.0.0
- 2.0.1
- 2.0.3
- 2.1.0 (0)
- 2.2.1 (0)
- 2.3.2 (0)
- 2.3.8 (0)
- 3.0.0
- 3.0.5
- 3.0.7
- 3.0.9
- 3.1.0
- 3.2.1
- 3.2.3
- 3.2.8
- 3.2.13
- What's this?
run_before_filters(chain, index, nesting)
private
Hide source
# File actionpack/lib/action_controller/filters.rb, line 585 def run_before_filters(chain, index, nesting) while chain[index] filter, index = chain[index], index break unless filter # end of call chain reached case filter when BeforeFilter filter.call(self) # invoke before filter index = index.next break if @before_filter_chain_aborted when AroundFilter yielded = false filter.call(self) do yielded = true # all remaining before and around filters will be run in this call index = call_filters(chain, index.next, nesting.next) end halt_filter_chain(filter, :did_not_yield) unless yielded break else break # no before or around filters left end end index end


