I'm trying to create a simple frontend plugin in TYPO3, .
I want to be able do putit into my backend template, just like I am able to put a regular text element, a table or a bullet list.
The plugin should have two textfields, that people should be able to fill in:
Invoice Number & Title
Then when the it is put into the page, the frontend should render it as following:
<a href="domain/invoices/{invoice number}.pdf"> {title} </a>
How can I achieve this, I tried using the Extension Builder, but I couldn't get the fields to end up in the typo3 backend.
N.B. I'm not looking for a specific solution for this problem, I'm just trying to create (more complex) frontend plugins and simplified this problem for the sake of understanding the general principle.