Project

General

Profile

Actions

Developer guideline » History » Revision 13

« Previous | Revision 13/17 (diff) | Next »
Max Milbers, 02/25/2011 04:43 PM


Developer guideline

Philosophy and goal

The goal is to write a small fast and stable core code which is easy to extend. The priorities are as the following:
- Write OOP and clean in the given MVC structure
- Protect and secure the code
- the code should be fast and performant
- Focus on the core functions

and as last thing, think about eyecandies and design.

Remember we dont want an ecommerce framework full of features. We want a slim and fast framework which can be easily extended with features.

- Mistakes might happen, important is to learn from them

- It is better to do something wrong than to do nothing

Guidelines for teamwork

The first very important rule is,

"Stay at your task"

This means, when you find a bug somewhere while you are working on your task, dont just fix it. Look in the tracker who is responsible for the code, look in the svn history to see who did the last change or even better the changes which cause your bugs. When you dont find any person ask the projectleader (Max Milbers). Give the person some time to correct the code, fix it only, when you get an OK by the projectleader.

This rule is very important for the teamwork and has several reasons.
It often happens that someone is changing something which is effecting the code in many areas. We already had the case that someone (lets call him A) changed the code. Another guym, B, was working on his own code, using code written by A. Due the changes the code of B didnt worked before and B started to "fix" the code of A, which just destroyed the work of A, because B thought in the old structure and A just invented a new system.
Or another annoying and frustrating case is when B says to A, hey there is a bug in your code. A starts immediatly fixing it, but B fixed it also and A gets an conflicted SVN and did his working for nothing or even worse (we had that also), gets an conflicted svn and has to fix the "fix" of B again, because only A really understoods that part of code.

So working in the svn together is quite easy even when we work on the same files, when everyone follows the rules:
- update your svn often
- stay at your task
- dont fix bugs not related to your task without permission by the projectleader.

Note about svn:
If you want to committ a new version, first do an update via SVN of it, then test it again and after that committ it.

Requesting features.

If you have an idea or special interest for VirtueMart, write it in the internal forums where we can discuss it and develop a plan. However, if you start developing something then finish it. Too often developers are very enthuastic and start a great, big, mega feature and end up with nothing useable. Discussion and planning in the forum should make possible to work together

Everyone can add features as many as he wants but must follow 3 rules
1. it must not slow down the page and/or can be disabled and the standard is disabled
2. it must fit in the rest of the architecture
3. it must be bugfree for the release date (Beta, RC, Final)

Some general coding advices

In general we avoid the use of globals. Globals are hard to maintain and they are unsure variables.
Here a guide for Setting up a Development Environment
Here are some general tips and tricks for php: general php hints

Code Formatting:

We follow the joomla standard in most cases. We use camelCase for methods. For faster copypasting and working with database fields. Both variable and database fields are lowercase and seperated with "_". You may use for internal variables camelCase also.

Example:

function exampleMethod($data = 0) {
    if (!$product_id) $product_id = JRequest::getInt('product_id', 0);
    if ($product_id > 0) {
        ...;
    }
}

SQL Formatting:

The queries should follow this format:

$q = 'SELECT `example_id` FROM `#__vm_table` WHERE `user_id`=' . (int)$user_id;

or if the

$user_id is an array, use $user_id["myId"]

Placing of the ` improves speed, because the sql-engine can parse faster ( and do not have to reparse).

Variable Formatting:

Due abstract logic many people name their variables or database fields just "id", "key", "value" and so on.

In our case we want to rewrite the structure of an old code, therefore it is very important to find the variable in the code rather fields in the database.

So we want a kind of this: <classname><tablename>variable like here

$vendor_id or $payment_method_id

Exception from this rule is the use of ordering and published. Ordering and published with 0 and 1 as values are useable with the joomla standard methods.

Filename Formatting:

Filenames should be lowercase.

Models filenames (mymodel.php), view direcorynames (myview), all helper files and probably all other files loaded by the Joomla Framework, must be lowercase, no matter how you load the file:

$this->loadHelper('adminMenu'); // looks for the file helpers/adminmenu.php

More complex filenames that are specific to your task and loaded by your own code (using require_once()), e.g. mySpecificClass.php, can be camelcase.

Read this article for more info http://docs.joomla.org/Talk:Developing_a_Model-View-Controller_Component_-_Part_1#Use_lowercase_file_and_folder_names_in_your_components.21

Table names

Depending on the way mysqld is configured, the MySQL server might be case sensitive on linux systems too, so always use the correct case, preferably lowercase only.

URL Requests:

As written in the section Filename Formatting above, Joomla requires lowercase filenames. However, URL requests are not lowercased by Joomla. In order to find the proper views and controllers, make sure you use lowercase only in requests, e.g.:

$this->setRedirect('index.php?option=com_virtuemart&view=updatesMigration', $msg); // Fails
$this->setRedirect('index.php?option=com_virtuemart&view=updatesmigration', $msg); // Works

Character Encoding:

Like in joomla we use UTF-8. Please ensure the right character set in your IDE.

Updated by Max Milbers about 13 years ago · 13 revisions