Downloads
Release notes
- Domain attributes is full editable : users can easily add their own domains
- Every content now has its own themeable function to customize the view
- Every organization can classified as customer and/or provider. Only customers are shown in Projects/Task/Tickets/Invoices
- Every organization can be set as active or inactive. Only active organizations are presented when new items are added
- A project has a start and an end date (this will be used to determine if it is active or not in future)
- 'Vat' term has been replaced by 'Tax' everywhere
- Every Storm label is now fully customizable through a theme function where you can define your own strings :
function theme_storm_texts() {
$items = array (
'default' => array (
'VAT' => 'Tax',
),
);
return $items;
}
default is the domain of the strings here. Other available domains : organization, project, task, ticket and so on.
If a string for the own domain is not available, the default is taken :
function theme_storm_texts() {
$items = array (
'invoice' => array (
'VAT' => 'Tax',
),
'project' => array (
'Organization' => 'Customer',
),
);
return $items;
}