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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T21:08:44+00:00 2026-05-27T21:08:44+00:00

Is there a reason why Magento has a _construct and a __construct method? Why

  • 0

Is there a reason why Magento has a _construct and a __construct method? Why does the additional _construct exist? Could anything achieved by having the extra _construct method not be achieved by just calling the parent constructor in the child class?

  • 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-27T21:08:45+00:00Added an answer on May 27, 2026 at 9:08 pm

    Best answer I can find: http://www.magentocommerce.com/boards/viewthread/76027/#t282659

    Basically, the root-level class (from which all other classes inherit) implements __construct, which PHP calls automatically whenever a class is constructed. Right now, this root-level class simply calls _construct, which contains the actual code.

    Say you have this set-up:

    class BaseClass {
       function __construct() {
           print "In BaseClass constructor\n";
           doSomethingReallyImportant();
       }
    }
    
    class SubClass extends BaseClass {
       function __construct() {
           print "In SubClass constructor\n";
       }
    }
    
    $obj = new BaseClass();
    //"In BaseClass constructor"
    //something really important happens
    
    $obj = new SubClass();
    //"In SubClass constructor"
    //important thing DOESN'T happen
    

    PHP doesn’t automatically call the parent class constructors, so doSomethingReallyImportant never gets called. You could require that subclass constructors call parent::__construct(), but that’s easy to forget. So Magento has subclasses override _construct:

    class BaseClass {
       function __construct() {
           doSomethingReallyImportant();
          _construct();
       }
       function _construct() {
           print "In BaseClass constructor\n";
       }
    }
    
    class SubClass extends BaseClass {
       function _construct() {
           print "In SubClass constructor\n";
       }
    }
    
    $obj = new BaseClass();
    //something really important happens
    //"In BaseClass constructor"
    
    $obj = new SubClass();
    //something really important happens
    //"In SubClass constructor"
    

    PHP doesn’t detect a constructor in SubClass, so it calls BaseClass‘s constructor. This allows BaseClass to doSomethingReallyImportant before calling SubClass’s overridden _construct.

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

Sidebar

Related Questions

Is there any reason why I could (or should) not declare dependency properties as
Is there a reason why I should call a JavaScript method as follows? onClick=Javascript:MyMethod();
Is there any reason why SELECT * FROM MyTable WHERE [_Items] LIKE '*SPI*' does
Is there a reason Impersonation does not seem to work with a UNC path
Is there any reason to do anything more complicated than one of these two
Is there any reason not to use the bitwise operators &, |, and ^
Is there any reason something like this would not work? This is the logic
Is there any reason why I should pick JSON over XML, or vice-versa if
Is there any reason to use a varchar field instead of a date field
Is there any reason to start a GUI program (application for Windows) written in

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.