Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Magento Training Examples [closed]

Tags:

magento

If you have trained a new Magento developer what were some if any dummy tasks you have given them. Besides reading all of the articles out there and doing the examples, I am looking for some ideas to give developers to work on after reading as much about Magento as they could without actually working on a task.

If anyone has any good ideas please let me know, You can even post some good code snippets of possible answers and what not. This might be a good thread to keep if we get a lot of good answers, for us tech leads out here responsible for training.

They could be frontend design template or building modules, it doesn't really matter. If someone posts a really good example, I will mark that one as the answer.

Not sure this is appropriate for Stackoverflow, but not sure where else to put it where it would be answered with quality responses.

like image 433
dan.codes Avatar asked May 16 '11 14:05

dan.codes


1 Answers

The tasks I've given before really depend on what the developer needs to do as part of their normal job. I tend to give tasks that force the "rabbit hole" situations early on in the process, and make sure that the developer has enough support to come and ask when they get stuck.

For frontend developers, the best thing to do is develop an actual theme, or whatever tasks need to be accomplished in some current project. As examples, ask them to:

  1. Create a new theme directory w/ skin directories, etc
  2. Change a template (the product/list.phtml and product/view.phtml are both common here) to accomodate some desired new functionality.
  3. Add a JS lib to the product page for zoom or some other functionality, to be loaded cleanly using Magento's facilities.
  4. Create a new page, including complete controllers and layouts as appropriate, with functionality to be fleshed out by a backend developer.
  5. Change the CSS to the One Page checkout to fit the new site theme, without breaking CSS for the rest of the site.

For backend developers, again the best thing is the real thing. Developing backend modules takes some significant familiarity, but hitting the highlights isn't too bad. Examples:

  1. Start a new Magento module.
  2. Override a core Magento class with one from the local module
  3. Create some administrator functionality to deal with the new module.
  4. Add an ACL so that this functionality can be enabled / disabled for particular admin users.
  5. Integrate with frontend code (see the frontend developer above) to provide the functionality to the end user.
  6. Append to the system configuration to use the new functionality as part of the normal system.

These are just general ideas, but they will quickly force a developer to gain some understanding of the way Magento is laid out and how it operates. Of course, it can take weeks or months of supportive mentoring to get the developer to the point where they are a self-sufficient developer on Magento, but that's largely a matter of filling out the details after items like this.

Hope that helps!

Thanks, Joe

like image 151
Joe Mastey Avatar answered Oct 31 '22 04:10

Joe Mastey