mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
19 lines
374 B
Ruby
19 lines
374 B
Ruby
|
require_dependency 'plugin/filter_manager'
|
||
|
# this concept is borrowed straight out of wordpress
|
||
|
module Plugin
|
||
|
class Filter
|
||
|
def self.manager
|
||
|
@manager ||= FilterManager.new
|
||
|
end
|
||
|
|
||
|
def self.register(name, &blk)
|
||
|
manager.register(name, &blk)
|
||
|
end
|
||
|
|
||
|
def self.apply(name, context, result)
|
||
|
manager.apply(name, context, result)
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|