[TYPO3-english] How to create backend module for documentation
Xavier Perseguers
xavier at typo3.org
Wed Oct 30 16:18:46 CET 2013
Hi Sergio,
Which version of TYPO3 are you targeting?
I ask this because if you target 6.2, then best practices will arise and
simply be to show your in-house documentation within the new
documentation module:
http://docs.typo3.org/typo3cms/extensions/documentation/
If you really need a custom Backend module, you should simply load your
documentation in an iframe with something like
function main() {
$url = 'http://yourwebsite/whatever/documentation.html';
$this->content = '<html>
<head>
<title>Documentation</title>
</head>
<frameset cols="*">
<frame src ="' . htmlspecialchars($url) . '" />
</frameset>
</html>';
}
HTH
Sergio Catalá wrote:
> Hi list,
>
> can you give me an example of an extbase extension in the TER which adds
> a simple BE module with Rest documentation?
>
> I have installed sphinx extension, I generated my documentation in ReST
> format, and I converted to PDF and Hhtml. Now I want to link this Html
> pages in a new backend module. I know how to create a BE module, but I
> don't know how to link this module to show all my output in Html.
>
> Thanks in advance,
> Sergio
>
--
Xavier Perseguers
Release Manager TYPO3 4.6
TYPO3 .... inspiring people to share!
Get involved: http://typo3.org
More information about the TYPO3-english
mailing list