From 1e5fda032776db921b9eb09bd8f9f8567a4973dd Mon Sep 17 00:00:00 2001 From: Llewellyn van der Merwe Date: Sun, 7 Oct 2018 22:13:53 +0200 Subject: [PATCH] Fixed an missing div tag in the custom code area. --- .../en-GB/en-GB.com_componentbuilder.ini | 179 +++++++++--------- 1 file changed, 90 insertions(+), 89 deletions(-) diff --git a/admin/language/en-GB/en-GB.com_componentbuilder.ini b/admin/language/en-GB/en-GB.com_componentbuilder.ini index d3afb9103..1d75c498a 100644 --- a/admin/language/en-GB/en-GB.com_componentbuilder.ini +++ b/admin/language/en-GB/en-GB.com_componentbuilder.ini @@ -3600,95 +3600,95 @@ COM_COMPONENTBUILDER_CUSTOM_CODE_NEW="A New Custom Code" COM_COMPONENTBUILDER_CUSTOM_CODE_NOTE_JCB_PLACEHOLDER_DESCRIPTION="[save to see placeholder]
You can also pass values to this code like this: [save to see placeholder trick]
Those values will be replace placeholders called args. These placeholders are zero based and should look like this: [[[arg0]]], [[[arg1]]] ... as many as you like. If you use 5 args in your code, you must always pass 5 values, since they are zero based your fifth arg will look like this [[[arg4]]]
Please note that you can not use this placeholder in other custom code views, but in all other custom code areas in JCB found in other views like the admin, site and custom admin views.
Another important note, all code with args will not be reversed updated from the changes in the editor out side of JCB at this time, since that will remove all the arg placeholders this means you will only be able to update the code here in the JCB UI.
This note will change once we have resolved these limitations." COM_COMPONENTBUILDER_CUSTOM_CODE_NOTE_JCB_PLACEHOLDER_LABEL="You can use this code in any JCB code area, simply add this PlaceHolder." COM_COMPONENTBUILDER_CUSTOM_CODE_NOTE_PLACEHOLDERS_EXPLAINED_DESCRIPTION="
-

Understand how the placeholders work in (IDE)

-
-

Comment Type PHP/JS

-

How You Can Add New Code in the IDE

- -Add New Insert Code - - - -
/***[INSERT<>$$$$]***/ 
 <YOUR CODE HERE>
/***[/INSERT<>$$$$]***/ 
- -Add New Replace Code - - - -
/***[REPLACE<>$$$$]***/ 
 <YOUR CODE HERE>
/***[/REPLACE<>$$$$]***/ 
-

When JCB Adds it Back

- -JCB Add Inserted Code - - - -
/***[INSERTED$$$$]***//*x*/ 
 <YOUR CODE HERE>
/***[/INSERTED$$$$]***/ 
- -JCB Add Replaced Code - - - -
/***[REPLACED$$$$]***//*x*/ 
 <YOUR CODE HERE>
/***[/REPLACED$$$$]***/ 
-

When You Want to Changing Existing Custom Code in the IDE

- -Update Inserted Code - - - -
/***[INSERTED<>$$$$]***//*x*/ 
 <YOUR CODE HERE>
/***[/INSERTED<>$$$$]***/ 
- -Update Replaced Code - - - -
/***[REPLACED<>$$$$]***//*x*/ 
 <YOUR CODE HERE>
/***[/REPLACED<>$$$$]***/ 
-
-
-

Comment Type HTML

-

How You Can Add New Code in the IDE

- -Add New Insert Code - - - -
<!--[INSERT<>$$$$]--> 
 <YOUR CODE HERE>
<!--[/INSERT<>$$$$]--> 
- -Add New Replace Code - - - -
<!--[REPLACE<>$$$$]--> 
 <YOUR CODE HERE>
<!--[/REPLACE<>$$$$]--> 
-

When JCB Adds it Back

- -JCB Add Inserted Code - - - -
<!--[INSERTED$$$$]--><!--x--> 
 <YOUR CODE HERE>
<!--[/INSERTED$$$$]--> 
- -JCB Add Replaced Code - - - -
<!--[REPLACED$$$$]--><!--x--> 
 <YOUR CODE HERE>
<!--[/REPLACED$$$$]--> 
-

When You Want to Changing Existing Custom Code in the IDE

- -Update Inserted Code - - - -
<!--[INSERTED<>$$$$]--><!--x--> 
 <YOUR CODE HERE>
<!--[/INSERTED<>$$$$]--> 
- -Update Replaced Code - - - -
<!--[REPLACED<>$$$$]--><!--x--> 
 <YOUR CODE HERE>
<!--[/REPLACED<>$$$$]--> 
-
-

x is the ID of the code in the system don't change it when you edit the code in your IDE outside of JCB!

-
- +
" COM_COMPONENTBUILDER_CUSTOM_CODE_NOTE_PLACEHOLDERS_EXPLAINED_LABEL="Information Area." COM_COMPONENTBUILDER_CUSTOM_CODE_NOT_REQUIRED="Not Required"