Topic: We feel that a lot more people should know about FrontAccounting.
We feel that a lot more people should know about FrontAccounting.
Everyday tens if not hundreds of documents are produced/printed sent to suppliers, customers, accountants, banks, etc using a FA installation – this is an opportunity to directly target potential FA users.
Currently in the default legal text it states www.frontaccounting.com, but this can easily be deleted/changed and the legal text does not appear in all documents
The vast majority of pre-printed invoices etc have the name of the printer/program used on them; so why not FA?
So if we hardcode the following:-
$this->SetX(15);
$this->SetY(150);
$this->SetFont('helvetica', 'B', 8);
$this->SetTextColor(153, 211, 245);//That’s the blue from FA icon
$this->StartTransform();
$this->Rotate(270);
$this->Cell(0,10,'Generated & Printed by www.frontaccounting.com Open Source Accounting, Inventory management and ERP for your business', 0, 0, 'C', 0, 'http://www.frontaccounting.com/');
$this->StopTransform();
$this->SetTextColor(0, 0, 0);
Note on script: ‘$link’ in tcpdf seems to be for internal document links, not urls; but most pdf readers will pick www.etc as a link (firefox pdf will not, chrome pdf does). Even if it is not picked up as a clickable link the words are there to be seen.
Also I had to include it in Header, Header2 and Header3 for it to be visible in all documents, is there a way for it to be included in all documents without repeating the code 3 times?
This will print in the left hand margin, this can easily be changed to the right hand margin if required.
If it is used at the bottom it will be viewed as “small print” and most people (yes wrongly) do not read the small print. Also there may be paper feed issues.
On either left or right margin it will stand out as different – font, print direction, size, decoration, and font colour. Which should draw a readers eyes to it.
Developers or code savvy users will debrand, but they will do that anyway: But the majority of users will not.
Users may have custom margins for their documents, so the script results may not appear: But again the majority of users will not.
Edit:-
Also this needs to be translated:-
$txt = '_("Generated & Printed by www.frontaccounting.com Open Source Accounting, Inventory management and ERP for your business")';
$this->Cell(0, 10, $txt, 0, 0, 'C', 0, 'http://www.frontaccounting.com/');
To be tested