Hi all,
I'm looking for a possibility to get some Group X Values in a template but NOT from the ACTUAL ARTICLE.
I search a lot an found that I can get the values of standart fields with this code:
$seb_a= JCckContent::getInstance(array( 'joomla_article' , ARTIKEL ID));
$title = $seb_a->get('title');
That works fine now I will get the values from a group X Field:
$seb_a= JCckContent::getInstance(array( 'joomla_article' ,ARTIKEL ID));
$title = $seb_a->get('xg_article');
So I get the unfiltert result from the DB table.
::xg_article::1::/xg_article::
::cck_xg_article::xg_article_images::/cck_xg_article::
::article_sh_type|0|xg_article::0::/article_sh_type|0|xg_article::
::article_sh_media_type|0|xg_article::0::/article_sh_media_type|0|xg_article:: ....
So I come back to my question:
How can I get the Group X Values for Example in an array or with "get" how I done in it normaly?
article_sh_type= ....
article_sh_media_type= ...
Thanks a lot!