[TYPO3-english] Assign dynamic value to a TypoScript int data type
Valter Rodrigues
vrodrigues at gmail.com
Mon Nov 3 13:16:15 CET 2008
Thank you Francois, I lost one day searching for this :)
I tried to render this extension (pbimagegraph) using PHP to set up the
extension's TypoScript directly in php.
So I used this code (as described in Dmitry's Book)
$cObj = t3lib_div::makeInstance('tslib_cObj');
$cObj->start(array());
$conf=..........
$conf['includeLibs']=
'EXT:pbimagegraph/pi1/class.tx_pbimagegraph_pi1.php';
$html.=$cObj->cObjGetSingle('USER_INT',$conf);
But unfortunately I got this error:
Fatal error: Call to a member function _setParent() on a non-object in
......... on line 203
Any ideas what's wrong?
Thank u again!
Valter
O/H Francois Suter έγραψε:
> Hi,
>
>> For example I have this int datatype path:
>>
>> lib.pbimagegraph.10.........10.x=5
>> lib.pbimagegraph.10.........10.y=5
>> Could I replace the contstants 5 with dynamic content?
>
> It all depends on the data type of these x and y values. If they are
> simple integers, you're out of luck. All you could do is use constants.
> If they are cObject or stdWrap then there are solution. Given that the
> example below does not work, they are certainly not cObject's.
>
> Refer to the extension's manual to find out the data type of these
> propreties.
>
>> For example I tried this without result:
>> test=TEXT
>> test.value=5
>> test.intval=1
>> #and then
>> lib.pbimagegraph.10.........10.y<test.value
>
> This will work only if "y" is also a cObject.
>
> HTH
>
More information about the TYPO3-english
mailing list