- HTML Admin-Manual
- PDF Admin-Manual
- HTML ITSM-Manual
- PDF ITSM-Manual
- HTML Developer-Manual
- PDF Developer-Manual
- HTML Developer-API
Chapter 2. Coding Style Guide
In order to preserve the consistent development of the OTRS project, we have set up a few guidelines regarding style.
2.1. Formatting
TAB: We use 4 spaces. Examples for braces:
if ($Condition) {
Foo();
}
else {
Bar();
}
while ($Condition == 1) {
Foo();
}

