Friday 08 August 2008 7:54:41 am
Hi there, the following code works fine:
$ini =& eZINI::instance( "colors.ini" );
$blue = (int) $ini->variable('ColorSettings','blue');
but it will automatically take the correct value from the current siteaccess ini file. Is there a way to force the site-access somehow, i.e. doing something like:
// (wrong code!)
$ini =& eZINI::instance( "colors.ini" , "fre" );
$blue = (int) $ini->variable('ColorSettings','blue');
Thank you very much in advance, </Pascal>
|