Product Plugins » History » Revision 4
« Previous |
Revision 4/10
(diff)
| Next »
Patrick Kohl, 10/08/2011 11:29 PM
Product Plugins¶
for user¶
The product plugin is installed as a standard joomla plugin
To see it you must publish it in joomla extention after installation.
After you do that, you can find it in the customfields on edit Choice :
Custom Field Type : plugin
After choicing the plugin you can setup the defaut value depending on your plugin.
for developper.¶
Language files :¶
XML install file must use the name in this form plg_vmcustom_YOURPLUGINNAME
EG. for textinput french and english
<languages>
<language tag="en-GB">en-GB.plg_vmcustom_textinput.ini</language>
<language tag="fr-FR">fr-FR.plg_vmcustom_textinput.ini</language>
</languages>
the constructor include directly the language file to simplify using JTEXT
Try to always use this convention name in the ini files :
VMCUSTOM_YOURPLUGINNAME_STRING="my string in english"
EG. for texinput plugin , string : size
VMCUSTOM_TEXTINPUT_INPUT_SIZE="Size of input"
Write your plugin :¶
List of function to write in your plugin
onProductEdit($field,$param,$row, $product_id);
render the plugin with param to display on product edit customfields TAB
(called by customfields inputTypePlugin)
onDisplayProductFE( $field, $param, $product, $idx);
display the plugin on product FE
return $html
onViewCartModule( $product,$custom_param,$productCustom, $row);
display the product plugin on cart module
return $html
onViewCart($product, $param,$productCustom, $row);
display the product plugin on cart
return $html
onViewCartOrder($product, $param,$productCustom, $row)
handel $param before adding it in the order
return $param;
onViewOrderFE($item, $param,$productCustom, $row);
display the plugin in order for customers
$item is the order item line
Eg. to Get the statut ( $item->order_status == 'S' )
onViewOrderBE($item, $param,$productCustom, $row);
display the plugin in order for vendor
$item is the order item line
modifyPrice( $product, $field,$param,$selected )
overide the defaut price modifation by plugin
you have to rewrite it in your plugin to do other calculations
you must return $field->custom_price at end to include your changes or the price varaint is set to 0;
Use of plugin XML parameters :¶
XML Exemple for textinput
<?xml version="1.0" encoding="UTF-8" ?> <install version="1.5" type="plugin" group="vmcustom" > <name>VMCustom - textinput</name> <creationDate>June 2011</creationDate> <author>The VirtueMart Development Team</author> <authorUrl>http://www.virtuemart.net</authorUrl> <copyright>Copyright (C) 2004-2011 Virtuemart Team. All rights reserved.</copyright> <license>http://www.gnu.org/licenses/gpl-3.0.html GNU/GPL</license> <version>1.9.8</version> <description>text input plugin for product</description> <languages> <language tag="en-GB">en-GB.plg_vmcustom_textinput.ini</language> <language tag="fr-FR">fr-FR.plg_vmcustom_textinput.ini</language> </languages> <files> <filename plugin="textinput">textinput.php</filename> </files> <params addpath="/administrator/components/com_virtuemart/elements"> <param type="vmjpluginwarning" /> <param name="custom_name" type="text" size="20" default="COM_VIRTUEMART_COMMENT" label="VMCUSTOM_NAME_INFO" description="VMCUSTOM_NAME_INFO_DESC" /> <param name="custom_size" type="text" size="5" default="10" label="VMCUSTOM_TEXTINPUT_SIZE" description="VMCUSTOM_TEXTINPUT_SIZE_DESC" /> <param name="custom_price_by_letter" type="list" default="0" label="VMCUSTOM_PRICE_BY_LETTER" description="VMCUSTOM_PRICE_BY_LETTER_DESC" > <option value="0">No</option> <option value="1">Yes</option> </param> </params> </install>
YOu can see somes differences with joomla standard XML files :
<install version="1.5" type="plugin" group="vmcustom" >
inform joomla the plugin is a "vmcustom" plugin(product customfield plugin)
<params addpath="/administrator/components/com_virtuemart/elements">
Overide the joomla system by virtuemart 2 to enchance it.
Always add this or your plugin have chance to not work
<param type="vmjpluginwarning" />
inform that the parameters are saved by virtuemart2 for each plugin variant.
transmited parameters by functions¶
$product_id
is the selected product_id
$product
is the selected product
$param
are the plugin parameters
$productCustom ,$field
are the product customfield attributes
$selected,$row or $idx
is the parameter to find or write the right "index/row"
TODO : add more details for parameters
See texinput plugin for eg.
Updated by Patrick Kohl about 13 years ago · 4 revisions