Downloads

Download tar.gz 73.31 KB
MD5: 1612890334c3f67bdd87a1bad0bb8b58
SHA-1: efce612a725616970bb211563b73fa7663f6de9e
SHA-256: 43f2fba77ef9c39ec9a85f31c1cc7a247a9c7177d46741450b1d0dd8d201ed2c
Download zip 122.29 KB
MD5: e2f6da51ae6453b053d877b4c8fac99f
SHA-1: faa71b3bdcc48ea06defe94b2b00a59ac0bcf100
SHA-256: 4fa081e815452a569566dc37a2f01703558bf164c14294a86736546148a3256e

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;
}
Created by: Roberto Gerola
Created on: 1 Sep 2008 at 09:01 UTC
Last updated: 1 Aug 2018 at 21:03 UTC
New features
Insecure
Unsupported

Other releases