|
|
|
@ -1501,19 +1501,19 @@ module ApplicationHelper
|
|
|
|
|
|
|
|
|
|
def render_dynamic_nav
|
|
|
|
|
home_link = link_to l(:field_homepage), {:controller => 'welcome', :action => 'index'}
|
|
|
|
|
course_all_course_link = link_to l(:label_course_all), {:controller => 'projects', :action => 'course', :project_type => 1}
|
|
|
|
|
course_teacher_all_link = link_to l(:label_teacher_all), {:controller => 'users', :action => 'index', :role => 'teacher'}
|
|
|
|
|
courses_link = link_to l(:label_course_practice), {:controller => 'projects', :action => 'course', :project_type => 1}
|
|
|
|
|
projects_link = link_to l(:label_project_deposit), {:controller => 'projects', :action => 'index', :project_type => 0}
|
|
|
|
|
users_link = link_to l(:label_software_user), {:controller => 'users', :action => 'index'}
|
|
|
|
|
contest_link = link_to l(:label_contest_innovate), {:controller => 'bids', :action => 'contest', :project_type => 1 }
|
|
|
|
|
course_all_course_link = link_to l(:label_course_all), {:controller => 'projects', :action => 'course', :project_type => 1, :subdomain => Setting.course_domain}
|
|
|
|
|
course_teacher_all_link = link_to l(:label_teacher_all), {:controller => 'users', :action => 'index', :role => 'teacher', :subdomain => Setting.course_domain}
|
|
|
|
|
courses_link = link_to l(:label_course_practice), {:controller => 'projects', :action => 'course', :project_type => 1, :subdomain => Setting.course_domain}
|
|
|
|
|
projects_link = link_to l(:label_project_deposit), {:controller => 'projects', :action => 'index', :project_type => 0, :subdomain => Setting.project_domain}
|
|
|
|
|
users_link = link_to l(:label_software_user), {:controller => 'users', :action => 'index', :subdomain => Setting.user_domain}
|
|
|
|
|
contest_link = link_to l(:label_contest_innovate), {:controller => 'bids', :action => 'contest', :project_type => 1 , :subdomain => Setting.project_domain}
|
|
|
|
|
bids_link = link_to l(:label_requirement_enterprise), {:controller => 'bids', :action => 'index'}
|
|
|
|
|
forum_link = link_to l(:label_project_module_forums), {:controller => "forums", :action => "index"}
|
|
|
|
|
stores_link = link_to l(:label_stores_index), {:controller => 'stores', :action=> 'index'}
|
|
|
|
|
stores_link = link_to l(:label_stores_index), {:controller => 'stores', :action=> 'index', :subdomain => Setting.course_domain}
|
|
|
|
|
|
|
|
|
|
#@nav_dispaly_project_label
|
|
|
|
|
nav_list = Array.new
|
|
|
|
|
nav_list.push(home_link)
|
|
|
|
|
nav_list.push(home_link) if !@nav_dispaly_home_path_label
|
|
|
|
|
nav_list.push(course_all_course_link) if @nav_dispaly_course_all_label
|
|
|
|
|
nav_list.push(course_teacher_all_link) if @nav_dispaly_teacher_all_label
|
|
|
|
|
|
|
|
|
|