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 7750283
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T11:15:02+00:00 2026-06-01T11:15:02+00:00

I was wondering where is the correct location to place the App::import on CakePHP2.

  • 0

I was wondering where is the correct location to place the App::import on CakePHP2.

I was thinking that it should be better to use it in each function in order not to load if another function doesnt use it.

Something like this:

public function name(){
   App::import('Controller', 'Classifiers');
   $classifiersController = new ClassifiersController();
   $this->request->data['Post'] = $classifiersController->getIdCategory('hola');
}

Instead of using the import at the top of the class.

What do you think?

  • 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-01T11:15:04+00:00Added an answer on June 1, 2026 at 11:15 am

    the correct place for app::import: no where! 😉

    you use App::uses() in 2.0 for all app classes (import is only for vendor stuff).
    and you would place it at the very top of your file (after the <?php)

    in your case:

    <?php
    App::uses('ClassifiersController', 'Controller');
    
    ...
    
    public function name(){
        $classifiersController = new ClassifiersController();
        $this->request->data['Post'] = $classifiersController->getIdCategory('hola');
    }
    

    although I HIGHLY recommend to take a closer look at what you are doing there.
    using another controller in a controller is pretty wrong – in your case you would probably want to import a model and use its method. controllers are only for logic of a specific request action. place all other things in the model (fat model, slim controller principle).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm wondering what the correct way to compare two characters ignoring case that will
I am just wondering whether that is a correct syntax in JQuery : var
I'm wondering about the correct/easiest/most pythonic way of dealing with subprojects that you want
I was wondering what the correct-way is when using a Linq to Sql-model in
I was wondering what is the correct way of implementing the custom Validator in
I was wondering if the codes below are the correct way to check for
I am new to programming, and am wondering if there is a correct way
I was wondering that if the space required on heap is not large enough
Just wondering what the correct way of structuring statements like this is? @products =
I'm wondering what the correct way to reset/unset the CSS behavior property is for

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.