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

  • Home
  • SEARCH
  • 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 6929805
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T11:21:53+00:00 2026-05-27T11:21:53+00:00

Ok i have this in what i have user.rb //user model OPTION = [‘none’,

  • 0

Ok i have this in what i have

user.rb //user model

OPTION = ['none', 'all', 'partial']
ANOTHER = ['true', 'false', 'neither']
YET_ANOTHER = ['something', 'another']

application_helper.rb

 def my_method(information, name)
   #this is where i need help
   User::OPTIONS

index.html.erb

my_method('information', :option)
my_method('information', :another)
my_method('information', :yet_another)

How do i in the my_method view helper grab the correct array so for example if i send in

my_method('information', :another)

in the my_method view helper i should execute

   User::ANOTHER

I was thinking i could upcase but how to i execute this ….

I tried this below

User::name.upcase
NoMethodError: undefined method `name' for #<Class:0x000d001078cd9c8>
  • 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-05-27T11:21:53+00:00Added an answer on May 27, 2026 at 11:21 am

    You just need to do the following.

    User.const_get(name.to_s.upcase)
    

    While this works, make sure you aren’t passing user-submitted params into const_get. This would be a security vulnerability, allowing user to essentially execute unintended code. Instead you should simply use a condition.

    info = case params[:something]
    when 'foo'; User::FOO
    when 'bar'; User::BAR
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a model that holds user address. This model has to have first_name
I have a model class like this: class Note(models.Model): author = models.ForeignKey(User, related_name='notes') content
I have a model, smth like this: class Action(models.Model): def can_be_applied(self, user): #whatever return
I have this user defined function. public partial class UserDefinedFunctions { static int i;
I have this regex thanks to another wonderful StackOverflow user /(?:-\d+)*/g I want it
I have a two models set up like this: class User < ActiveRecord::Base #
I have situation like this: user submits form with action='/pay' in '/pay' I have
I have this Class: public class User { public string id{ get; set; }
I have this sql statement: CREATE TABLE [dbo].[User]( [UserId] [int] IDENTITY(1,1) NOT NULL, [FirstName]
I have the following models: class Application(models.Model): users = models.ManyToManyField(User, through='Permission') folder = models.ForeignKey(Folder)

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.