2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/lib/onebox/engine/flash_video_onebox.rb

18 lines
443 B
Ruby
Raw Normal View History

module Onebox
module Engine
class FlashVideoOnebox
include Engine
matches_regexp /^https?:\/\/.*\.(swf|flv)$/
def to_html
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
end