function ListOptions_Rendering() and external Extension

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
sal1150
User
Posts: 69

function ListOptions_Rendering() and external Extension

Post by sal1150 »

Is there any ability to write script at 'function ListOptions_Rendering()' directly from external Extension?


mobhar
User
Posts: 11746

Post by mobhar »

Unfortunately no. You need to write it directly into that server event from your PHPMaker project side.


arbei
User
Posts: 9410

Post by arbei »

You may refer to the Preview extension as example and try:

	<!-- add setupoption -->
	<session type="key" value="myvalue1" action="add"
			location="setuplistoptionsext-start" loctype="after"
			ifile="myextension.php"/>
	<!-- add renderoption -->
	<session type="key" value="myvalue2" action="add"
			location="renderlistoptionsext-start" loctype="after"
			ifile="myextension.php"/>

Post Reply