Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8398033
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T20:56:02+00:00 2026-06-09T20:56:02+00:00

I have many controllers where I want to set up a variable @top_tier_link that

  • 0

I have many controllers where I want to set up a variable @top_tier_link that has the link to the index action of those controllers. Right now I have it like this:

class School::CoursesController < ApplicationController  
  before_filter :set_top_tier_link

  private
    def set_top_tier_link
      @top_tier_link = school_courses_path
    end
end

class School::UsersController < ApplicationController  
  before_filter :set_top_tier_link

  private
    def set_top_tier_link
      @top_tier_link = school_users_path
    end
end

I would like to define one before filter that can set that up automatically for any controller. How could I achieve that?

Edit:

This is just a sample, the number of controllers needing this kind of helper is much bigger. This variable is used at the layout level, so most controllers need this.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T20:56:04+00:00Added an answer on June 9, 2026 at 8:56 pm

    Define it in the ApplicationController. There you can differenciate based on the params[:controller] variable. Something like this:

    before_filter :set_top_tier_link
    
    def set_top_tier_link
      case params[:controller]
        when 'Courses'; @top_tier_link = school_courses_path
        when 'Users'; @top_tier_link = school_users_path
      end
    end
    

    Or even better to specify a helper for that, which does almost the same. Like this:

    def top_tier_link
      @top_tier_link ||= case params[:controller]
        when 'Courses'; school_courses_path
        when 'Users'; school_users_path
      end
    end
    
    helper_method :top_tier_link
    

    UPDATE: The path names can be generated automatically if you do not want to hardcode. A bit dangerous, but it should do the work:

    def top_tier_link
      @top_tier_link ||= send(params[:controller].gsub("/","_")+"_path")
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

so i have many controllers and many views. i want my variable @random_quote to
I have many controllers that will have some similar behavior, e.g. the user should
I have the problem that my view controller class has too many delegates and
Clients have many Invoices . Invoices have a number attribute that I want to
I have a event model that has many invitations. Invitations are setup through checkboxes
I'm new in ASP.NET MVC, I have many actions in my controllers, so they
I have many PowerPoint presentations that I need to be able to add to
I have many many files in a folder, and I want to process them
I have many directories with files in them. I want to create a comma
I have two tables set up in a many-to-many relationship: Incidents and Users. When

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.