mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
17 lines
435 B
Ruby
17 lines
435 B
Ruby
require_dependency 'oneboxer/base_onebox'
|
|
|
|
module Oneboxer
|
|
class FlashVideoOnebox < BaseOnebox
|
|
|
|
matcher /^https?:\/\/.*\.(swf|flv)$/
|
|
|
|
def onebox
|
|
if SiteSetting.enable_flash_video_onebox
|
|
"<object width='100%' height='100%'><param name='#{@url}' value='#{@url}'><embed src='#{@url}' width='100%' height='100%'></embed></object>"
|
|
else
|
|
"<a href='#{@url}'>#{@url}</a>"
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|