is it possible to use any kind of joomla template under yii framework structure?
while it possible?any kind of requirement to be needed in condition?
anyone have idea?
thx before,
my regards ![]()
is it possible to use any kind of joomla template under yii framework structure?
while it possible?any kind of requirement to be needed in condition?
anyone have idea?
thx before,
my regards ![]()
using-a-theme
You have to modify the joomla template to make it combatible with yii
for example you have to replace the
<jdoc:include type="modules" name="any-position" /> or
<jdoc:include type="component" />
with $content variable and widgets
$this->beginWidget('path.to.WidgetClass');
...
$this->endWidget();
or
$this->widget('path.to.WidgetClass');
or
echo $content;