Showing posts with label template. Show all posts
Showing posts with label template. Show all posts

Saturday, November 13, 2010

Get the Language ID from Template in Joomla 1.5

$config = &JFactory::getConfig();
$config->getValue('language');

Tuesday, November 9, 2010

Get Raw Data in the Template in Symfony

echo $page->getRawValue()->getContent();
The $page variable is the model object and the getContent method gets the content column/text which contains HTML tags... To avoid html entities, you have to use the getRawValue method.