How not to be confined into content area... full size web app on Joomla -
i creating intranet erp application integrate existing corporate joomla 3.1 based web site.
the extension made far has 1 default controller php file , made using javascript ui framework. (i.e. jqwidgets) not using model, views, helpers.
the other php files there respond client side interface ajax requests.
so need joomla user authentication , session control features dont want confine extensions output content area... need entire document surface... no menu, no module columns, no nothing !
can done ?
two ways
component.php in template show component's output add
&tmpl=component
urlsmake custom template outputs component
<html> <head> <!-- put scripts stylesheets need etc//--> </head> <body> <jdoc:include type="component" /> </body> </html>
Comments
Post a Comment