2012-10-09 06:47:16 +00:00
|
|
|
module Admin::PluginsHelper
|
2012-09-24 06:10:44 +00:00
|
|
|
|
|
|
|
def render_plugin_list
|
|
|
|
ret = ''
|
|
|
|
|
|
|
|
ret << "<div class=\"subnav\">"
|
|
|
|
ret << "<div id=\"module-nav\">"
|
|
|
|
ret << "<div class=\"arrow_next pull-right\"><i class=\"icon-chevron-right\"></i></div>"
|
|
|
|
ret << "<div class=\"arrow_prev pull-left\"><i class=\"icon-chevron-left\"></i></div>"
|
|
|
|
ret << "<div class=\"module-nav-view\">"
|
|
|
|
|
|
|
|
ret << "<ul class=\"nav nav-pills\">"
|
|
|
|
|
|
|
|
@plugins.each do |plugin|
|
|
|
|
ret << "<li>"
|
2012-10-15 07:30:48 +00:00
|
|
|
ret << (link_to eval("#{plugin.title}") , eval("panel_#{plugin.title}_back_end_#{plugin.object}s_path")) rescue nil
|
2012-09-24 06:10:44 +00:00
|
|
|
ret << "</li>"
|
|
|
|
end
|
|
|
|
|
|
|
|
ret << "</ul>"
|
|
|
|
|
|
|
|
ret << "</div>"
|
|
|
|
ret << "</div>"
|
|
|
|
ret << "</div>"
|
|
|
|
|
|
|
|
ret.html_safe
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|